summaryrefslogtreecommitdiff
path: root/Source/DafnyServer/DafnyHelper.cs
diff options
context:
space:
mode:
authorGravatar Clément Pit--Claudel <clement.pitclaudel@live.com>2015-08-13 10:39:04 -0700
committerGravatar Clément Pit--Claudel <clement.pitclaudel@live.com>2015-08-13 10:39:04 -0700
commit593cbcd63017c6a5fe4d50dda34a50637824dfd9 (patch)
tree9369e1a3ce7733ab37126665ebd3a049a4b44861 /Source/DafnyServer/DafnyHelper.cs
parentc978cd18f8dfba5bfac92af792041c5b4756de5a (diff)
Add a UniqueIdPrefix in the server and bump up the prover kill time
Diffstat (limited to 'Source/DafnyServer/DafnyHelper.cs')
-rw-r--r--Source/DafnyServer/DafnyHelper.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/DafnyServer/DafnyHelper.cs b/Source/DafnyServer/DafnyHelper.cs
index 10d98677..f32d0e38 100644
--- a/Source/DafnyServer/DafnyHelper.cs
+++ b/Source/DafnyServer/DafnyHelper.cs
@@ -62,7 +62,7 @@ namespace Microsoft.Dafny {
}
private bool Translate() {
- var translator = new Dafny.Translator() { InsertChecksums = true, UniqueIdPrefix = null }; //FIXME check if null is OK for UniqueIdPrefix
+ var translator = new Dafny.Translator() { InsertChecksums = true, UniqueIdPrefix = fname };
boogieProgram = translator.Translate(dafnyProgram); // FIXME how are translation errors reported?
return true;
}