diff options
author | wuestholz <unknown> | 2013-07-08 15:33:39 -0700 |
---|---|---|
committer | wuestholz <unknown> | 2013-07-08 15:33:39 -0700 |
commit | 277530c4a3dbdc7f82ba9ce4f628f30172110f91 (patch) | |
tree | 419b65222890b799ac5e05b8f635b72e9a0c14c9 /Source/VCExpr | |
parent | 11e2d2b6d6a8cb6da6d98bc8f102d8375fca26f5 (diff) |
Worked on the parallelization.
Diffstat (limited to 'Source/VCExpr')
-rw-r--r-- | Source/VCExpr/NameClashResolver.cs | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/Source/VCExpr/NameClashResolver.cs b/Source/VCExpr/NameClashResolver.cs index a78a6103..ac6ea33a 100644 --- a/Source/VCExpr/NameClashResolver.cs +++ b/Source/VCExpr/NameClashResolver.cs @@ -53,6 +53,15 @@ namespace Microsoft.Boogie.VCExprAST { return new UniqueNamer(this);
}
+ public void Reset()
+ {
+ GlobalNames.Clear();
+ LocalNames.Clear();
+ UsedNames.Clear();
+ CurrentCounters.Clear();
+ GlobalPlusLocalNames.Clear();
+ }
+
////////////////////////////////////////////////////////////////////////////
private readonly IDictionary<Object/*!*/, string/*!*/>/*!*/ GlobalNames;
|