summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar Michael Lowell Roberts <mirobert@microsoft.com>2015-09-22 13:08:21 -0700
committerGravatar Michael Lowell Roberts <mirobert@microsoft.com>2015-09-22 13:08:21 -0700
commitc5c25c54a86ed70c40b7a7ce5b2b9ddd54792c11 (patch)
tree31672b8612dd7ea3248eaf74ec1599e60587142b
parent71981e74519b9b29148fc1cf50d688ac8b4f892c (diff)
fix for warnings related to deprecated z3 options (please update to the latest revision of z3).
-rw-r--r--Source/Dafny/DafnyOptions.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Dafny/DafnyOptions.cs b/Source/Dafny/DafnyOptions.cs
index dd25e3c4..59d0eb2c 100644
--- a/Source/Dafny/DafnyOptions.cs
+++ b/Source/Dafny/DafnyOptions.cs
@@ -177,7 +177,7 @@ namespace Microsoft.Dafny
case "noNLarith":
DisableNLarith = true;
- this.AddZ3Option("NL_ARITH=false");
+ this.AddZ3Option("smt.arith.nl=false");
return true;
case "autoReqPrint":