Skip to content

Commit de9fd39

Browse files
romacjad-hamza
authored andcommitted
Update Z3 to version 4.8.5
1 parent f086928 commit de9fd39

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

project/Build.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ import scala.sys.process._
66
object ScalaZ3Build {
77

88
lazy val z3SourceRepo = "https://github.com/Z3Prover/z3.git"
9-
lazy val z3SourceTag = "z3-4.7.1"
9+
lazy val z3SourceTag = "Z3-4.8.5"
1010

1111
lazy val PS = java.io.File.pathSeparator
1212
lazy val DS = java.io.File.separator

src/main/scala/z3/scala/Z3Optimizer.scala

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ class Z3Optimizer private[z3](val ptr: Long, val context: Z3Context) extends Z3O
6767
private[this] var lastResult: Option[Boolean] = None
6868

6969
def check(): Option[Boolean] = {
70-
val res = i2ob(Native.optimizeCheck(context.ptr, this.ptr))
70+
val res = i2ob(Native.optimizeCheck(context.ptr, this.ptr, 0, null))
7171
lastResult = res
7272
res
7373
}

0 commit comments

Comments
 (0)