diff options
author | wuestholz <unknown> | 2015-01-13 11:44:51 +0100 |
---|---|---|
committer | wuestholz <unknown> | 2015-01-13 11:44:51 +0100 |
commit | cbdb1b0bafcd1c806e0ea4c3a0f3fefb073d4b1c (patch) | |
tree | 4b3470c696f7edfc83de116d3e86e654e704d536 | |
parent | 97e7528b3cd3e9b9e21b75abf817d6e0ed3b9df7 (diff) |
Minor change due to a change in Boogie
-rw-r--r-- | Source/Dafny/DafnyOptions.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Dafny/DafnyOptions.cs b/Source/Dafny/DafnyOptions.cs index 1690455f..61024688 100644 --- a/Source/Dafny/DafnyOptions.cs +++ b/Source/Dafny/DafnyOptions.cs @@ -149,7 +149,7 @@ namespace Microsoft.Dafny case "noNLarith":
DisableNLarith = true;
- this.Z3Options.Add("NL_ARITH=false");
+ this.AddZ3Option("NL_ARITH=false");
return true;
case "autoReqPrint":
|