diff options
author | Ken McMillan <unknown> | 2013-11-11 15:06:08 -0800 |
---|---|---|
committer | Ken McMillan <unknown> | 2013-11-11 15:06:08 -0800 |
commit | 479fe0571200196552e3d415ab3b90e30083b1b2 (patch) | |
tree | ecc2fbc7fd64268b21493d7feb3218547767355f /Source/VCGeneration/FixedpointVC.cs | |
parent | 334d29e2e34647caa2defd9cd0d329e1e9f0dfd3 (diff) |
Fixedpoint VC catch up with recent changes
Diffstat (limited to 'Source/VCGeneration/FixedpointVC.cs')
-rw-r--r-- | Source/VCGeneration/FixedpointVC.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/VCGeneration/FixedpointVC.cs b/Source/VCGeneration/FixedpointVC.cs index 6fe3a103..addf69a2 100644 --- a/Source/VCGeneration/FixedpointVC.cs +++ b/Source/VCGeneration/FixedpointVC.cs @@ -112,7 +112,7 @@ namespace Microsoft.Boogie checker = new Checker(this, program, logFilePath, appendLogFile, CommandLineOptions.Clo.ProverKillTime, null);
else {
checker = old_checker;
- checker.Retarget(program,checker.TheoremProver.Context);
+ checker.RetargetWithoutReset(program,checker.TheoremProver.Context);
}
old_checker = checker;
boogieContext = checker.TheoremProver.Context;
|