summaryrefslogtreecommitdiff
path: root/Source/Core
diff options
context:
space:
mode:
authorGravatar wuestholz <unknown>2013-06-10 14:34:54 -0700
committerGravatar wuestholz <unknown>2013-06-10 14:34:54 -0700
commitbfa3c64c4a4c583e30242da5a11b37800513418e (patch)
tree771a3f7ca5957c689d62ae35add352db2bf6ae47 /Source/Core
parent14ec8db388dc3d4db99fc25a6b8f434bba6fccd9 (diff)
Worked on improving program snapshot verification.
Diffstat (limited to 'Source/Core')
-rw-r--r--Source/Core/Absy.cs4
1 files changed, 3 insertions, 1 deletions
diff --git a/Source/Core/Absy.cs b/Source/Core/Absy.cs
index fd62f334..021897f0 100644
--- a/Source/Core/Absy.cs
+++ b/Source/Core/Absy.cs
@@ -1953,6 +1953,7 @@ namespace Microsoft.Boogie {
// the body is only set if the function is declared with {:inline}
public Expr Body;
+ public Axiom DefinitionAxiom;
public bool doingExpansion;
private bool neverTrigger;
@@ -2123,7 +2124,8 @@ namespace Microsoft.Boogie {
new Trigger(tok, true, new ExprSeq(call), null),
def);
}
- return new Axiom(tok, def);
+ DefinitionAxiom = new Axiom(tok, def);
+ return DefinitionAxiom;
}
}