Skip to content

Commit

Permalink
Test out a different z3 setting
Browse files Browse the repository at this point in the history
  • Loading branch information
superaxander committed Dec 5, 2024
1 parent 077f8b9 commit d0de091
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/viper/viper/api/backend/silicon/Silicon.scala
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,8 @@ case class Silicon(

val silicon = new viper.silicon.Silicon(reporter)

val z3Config = z3Settings.map { case (k, v) => s"$k=$v" }.mkString(" ")
val z3set = z3Settings ++ Seq(("smt.case_split","1"))
val z3Config = z3set.map { case (k, v) => s"$k=$v" }.mkString(" ")

var siliconConfig = Seq(
"--assertTimeout",
Expand Down

0 comments on commit d0de091

Please sign in to comment.