summaryrefslogtreecommitdiff
path: root/Source/VCGeneration/VC.cs
diff options
context:
space:
mode:
authorGravatar akashlal <unknown>2010-09-05 07:49:20 +0000
committerGravatar akashlal <unknown>2010-09-05 07:49:20 +0000
commitaa228aca0c3b4c731bd8c4e134136963e3d1c0c2 (patch)
tree9629865760c84d38eb2ad07c5428e37dccd66cad /Source/VCGeneration/VC.cs
parent2417ba8293140541c1b626189adc27a26238891c (diff)
Fixed a performance issue with StratifiedInlining
Diffstat (limited to 'Source/VCGeneration/VC.cs')
-rw-r--r--Source/VCGeneration/VC.cs31
1 files changed, 21 insertions, 10 deletions
diff --git a/Source/VCGeneration/VC.cs b/Source/VCGeneration/VC.cs
index 4591691a..23b75bbf 100644
--- a/Source/VCGeneration/VC.cs
+++ b/Source/VCGeneration/VC.cs
@@ -2089,31 +2089,33 @@ namespace VC {
// Over-approx query
reporter.underapproximationMode = false;
- // Push "true" (No-op) for all, except:
+ // Push "true" for all, except:
// push "false" for all candidates that have reached
// the recursion bounds
- bool pushedNone = true;
- bool pushedAll = true;
+ bool allTrue = true;
+ bool allFalse = true;
prev_axioms_pushed = checker.TheoremProver.NumAxiomsPushed();
foreach (int id in calls.currCandidates)
{
if (calls.getRecursionBound(id) <= bound)
{
- pushedAll = false;
- continue;
+ //checker.TheoremProver.PushVCExpression(calls.getTrueExpr(id));
+ allFalse = false;
+ }
+ else
+ {
+ checker.TheoremProver.PushVCExpression(calls.getFalseExpr(id));
+ allTrue = false;
}
-
- checker.TheoremProver.PushVCExpression(calls.getFalseExpr(id));
- pushedNone = false;
}
axioms_pushed = checker.TheoremProver.NumAxiomsPushed();
checker.TheoremProver.FlushAxiomsToTheoremProver();
// Check
- if (pushedAll)
+ if (allFalse)
{
// If we made all candidates false, then this is the same
// as the underapprox query. We already know the answer.
@@ -2136,7 +2138,7 @@ namespace VC {
if (ret == Outcome.Correct)
{
// If nothing was made false, then we're done
- if (pushedNone)
+ if (allTrue)
{
done = true;
break;
@@ -2316,7 +2318,10 @@ namespace VC {
calls.setCurrProc(procName);
expansion = calls.Mutate(expansion, true);
+ expansion = checker.VCExprGen.Eq(calls.id2ControlVar[id], expansion);
//expansion = checker.VCExprGen.Eq(expr, expansion);
+ //checker.TheoremProver.PushVCExpression(calls.getTrueExpr(id));
+
exprToPush = checker.VCExprGen.And(exprToPush, expansion);
}
checker.TheoremProver.PushVCExpression(exprToPush);
@@ -2709,6 +2714,12 @@ namespace VC {
return Gen.Eq(VCExpressionGenerator.False, id2ControlVar[candidateId]);
}
+ // Return the formula (candidate IFF true)
+ public VCExpr getTrueExpr(int candidateId)
+ {
+ return Gen.Eq(VCExpressionGenerator.True, id2ControlVar[candidateId]);
+ }
+
private Hashtable/*<int,absy>*/ getLabel2absy() {
Contract.Ensures(Contract.Result<Hashtable>() != null);