summaryrefslogtreecommitdiff
path: root/Source/Dafny/Translator.cs
diff options
context:
space:
mode:
authorGravatar wuestholz <unknown>2014-07-03 03:22:45 +0200
committerGravatar wuestholz <unknown>2014-07-03 03:22:45 +0200
commitbebfbaa98ac099cba47cfd1f02e6781ea257997f (patch)
treeecc198613e10399f0a7aaf8ff033229e0ffc55c8 /Source/Dafny/Translator.cs
parent61f46d7b7789290098361c2de7e775fbe487bd7f (diff)
Changed "dummy" checksums to "stable" and added more tests for the verification result caching.
Diffstat (limited to 'Source/Dafny/Translator.cs')
-rw-r--r--Source/Dafny/Translator.cs4
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Dafny/Translator.cs b/Source/Dafny/Translator.cs
index 39b1ea95..854883c8 100644
--- a/Source/Dafny/Translator.cs
+++ b/Source/Dafny/Translator.cs
@@ -398,13 +398,13 @@ namespace Microsoft.Dafny {
var impl = decl as Implementation;
if (impl != null && impl.FindStringAttribute("checksum") == null)
{
- impl.AddAttribute("checksum", "dummy");
+ impl.AddAttribute("checksum", "stable");
}
var func = decl as Bpl.Function;
if (func != null && func.FindStringAttribute("checksum") == null)
{
- func.AddAttribute("checksum", "dummy");
+ func.AddAttribute("checksum", "stable");
}
}
}