summaryrefslogtreecommitdiff
path: root/Source/VCGeneration/VC.cs
diff options
context:
space:
mode:
authorGravatar qadeer <unknown>2013-09-09 22:26:25 -0700
committerGravatar qadeer <unknown>2013-09-09 22:26:25 -0700
commit69ac480065a1b0d2bf4f0e5ed90835c02c30bb84 (patch)
tree6bbe564c5635cb38fced26d90fd0e328b545c2fd /Source/VCGeneration/VC.cs
parentb070084f5a5b0c24870c7c9f448c592887c09e88 (diff)
refactored StratifiedInline.GenerateVC to use GenerateVCAux instead of GenerateVC
Diffstat (limited to 'Source/VCGeneration/VC.cs')
-rw-r--r--Source/VCGeneration/VC.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/VCGeneration/VC.cs b/Source/VCGeneration/VC.cs
index 3e9386dc..e9ca2fe6 100644
--- a/Source/VCGeneration/VC.cs
+++ b/Source/VCGeneration/VC.cs
@@ -1395,7 +1395,7 @@ namespace VC {
return GenerateVCAux(impl, controlFlowVariableExpr, label2absy, proverContext);
}
- protected VCExpr GenerateVCAux(Implementation/*!*/ impl, VCExpr controlFlowVariableExpr, Dictionary<int, Absy>/*!*/ label2absy, ProverContext proverContext) {
+ public VCExpr GenerateVCAux(Implementation/*!*/ impl, VCExpr controlFlowVariableExpr, Dictionary<int, Absy>/*!*/ label2absy, ProverContext proverContext) {
Contract.Requires(impl != null);
Contract.Requires(proverContext != null);
Contract.Ensures(Contract.Result<VCExpr>() != null);