summaryrefslogtreecommitdiff
path: root/Source/Core/AbsyCmd.cs
diff options
context:
space:
mode:
authorGravatar wuestholz <unknown>2014-08-03 13:42:36 +0200
committerGravatar wuestholz <unknown>2014-08-03 13:42:36 +0200
commit0d82fe57a792b4b68826a9b0c72cf386052f1ff0 (patch)
tree061967f1c0f0dc8c233e3b1e3b5b4e60f7de8aeb /Source/Core/AbsyCmd.cs
parentfcb95cb3964d4b9d5fa112c72f8971df77df7e0b (diff)
Minor refactoring
Diffstat (limited to 'Source/Core/AbsyCmd.cs')
-rw-r--r--Source/Core/AbsyCmd.cs8
1 files changed, 4 insertions, 4 deletions
diff --git a/Source/Core/AbsyCmd.cs b/Source/Core/AbsyCmd.cs
index b16fb1ba..26a28e0e 100644
--- a/Source/Core/AbsyCmd.cs
+++ b/Source/Core/AbsyCmd.cs
@@ -1999,7 +1999,7 @@ namespace Microsoft.Boogie {
public string/*!*/ callee { get; set; }
public Procedure Proc;
public LocalVariable AssignedAssumptionVariable;
- public bool EmitDependenciesChecksum;
+ public bool EmitDependencyChecksum;
// Element of the following lists can be null, which means that
// the call happens with * as these parameters
@@ -2087,12 +2087,12 @@ namespace Microsoft.Boogie {
stream.Write(" := ");
}
stream.Write(TokenTextWriter.SanitizeIdentifier(callee));
- if (stream.UseForComputingChecksums && EmitDependenciesChecksum)
+ if (stream.UseForComputingChecksums && EmitDependencyChecksum)
{
- var c = Proc.DependenciesChecksum;
+ var c = Proc.DependencyChecksum;
if (c != null)
{
- stream.Write(string.Format("[dependencies_checksum:{0}]", c));
+ stream.Write(string.Format("[dependency_checksum:{0}]", c));
}
}
stream.Write("(");