summaryrefslogtreecommitdiff
path: root/Source/VCGeneration/Context.cs
diff options
context:
space:
mode:
authorGravatar wuestholz <unknown>2013-07-10 18:18:39 -0700
committerGravatar wuestholz <unknown>2013-07-10 18:18:39 -0700
commit035abd7ec2a774c8a721f7c39d58224fdcd123e2 (patch)
treec6a4a08a40cfae114a2c9b2b02c3cf618e6fd115 /Source/VCGeneration/Context.cs
parent2f20c7eeb74f2b2d39de95f0c3642458d836067a (diff)
Worked on the parallelization.
Diffstat (limited to 'Source/VCGeneration/Context.cs')
-rw-r--r--Source/VCGeneration/Context.cs10
1 files changed, 5 insertions, 5 deletions
diff --git a/Source/VCGeneration/Context.cs b/Source/VCGeneration/Context.cs
index a836b6fb..7931a042 100644
--- a/Source/VCGeneration/Context.cs
+++ b/Source/VCGeneration/Context.cs
@@ -34,7 +34,7 @@ namespace Microsoft.Boogie
public abstract Boogie2VCExprTranslator BoogieExprTranslator { get; }
public abstract VCGenerationOptions VCGenOptions { get; }
public abstract object Clone();
- public abstract void Clear();
+ public abstract void Reset();
}
[ContractClassFor(typeof(ProverContext))]
@@ -121,11 +121,11 @@ public abstract class ProverContextContracts:ProverContext{
this.orderingAxiomBuilder = oab;
}
- public override void Clear()
+ public override void Reset()
{
- SetupOrderingAxiomBuilder(gen, translator);
- distincts = new List<Variable>();
- axiomConjuncts = new List<VCExpr>();
+ SetupOrderingAxiomBuilder(gen, translator);
+ distincts = new List<Variable>();
+ axiomConjuncts = new List<VCExpr>();
}
protected DeclFreeProverContext(DeclFreeProverContext ctxt) {