summaryrefslogtreecommitdiff
path: root/Source/Core/AbsyCmd.cs
diff options
context:
space:
mode:
authorGravatar wuestholz <unknown>2014-10-17 10:11:47 +0200
committerGravatar wuestholz <unknown>2014-10-17 10:11:47 +0200
commit96c50d521e9b9089bfc20389e589ac5f45705632 (patch)
tree3b96432cff25c75b14bd7df4d8100b722719f269 /Source/Core/AbsyCmd.cs
parent855a0095b2a22230a2791827b666d0073b24ad5b (diff)
Worked on the verification result caching.
Diffstat (limited to 'Source/Core/AbsyCmd.cs')
-rw-r--r--Source/Core/AbsyCmd.cs9
1 files changed, 0 insertions, 9 deletions
diff --git a/Source/Core/AbsyCmd.cs b/Source/Core/AbsyCmd.cs
index 724885ed..2b16651b 100644
--- a/Source/Core/AbsyCmd.cs
+++ b/Source/Core/AbsyCmd.cs
@@ -1999,7 +1999,6 @@ namespace Microsoft.Boogie {
public string/*!*/ callee { get; set; }
public Procedure Proc;
public LocalVariable AssignedAssumptionVariable;
- public string ProcDependencyChecksumInPreviousSnapshot { get; set; }
// Element of the following lists can be null, which means that
// the call happens with * as these parameters
@@ -2087,14 +2086,6 @@ namespace Microsoft.Boogie {
stream.Write(" := ");
}
stream.Write(TokenTextWriter.SanitizeIdentifier(callee));
- if (stream.UseForComputingChecksums)
- {
- var c = ProcDependencyChecksumInPreviousSnapshot != null ? ProcDependencyChecksumInPreviousSnapshot : Proc.DependencyChecksum;
- if (c != null)
- {
- stream.Write(string.Format("[dependency_checksum:{0}]", c));
- }
- }
stream.Write("(");
sep = "";
foreach (Expr arg in Ins) {