Skip to content
Snippets Groups Projects
Commit a6566fa7 authored by Manos Koukoutos's avatar Manos Koukoutos
Browse files

Kick the new z3 solver out of tests for now

parent b3157364
No related branches found
No related tags found
No related merge requests found
...@@ -16,13 +16,6 @@ class NewSolversRegression extends VerificationRegression { ...@@ -16,13 +16,6 @@ class NewSolversRegression extends VerificationRegression {
val pipeFront = xlang.NoXLangFeaturesChecking val pipeFront = xlang.NoXLangFeaturesChecking
val pipeBack = AnalysisPhase val pipeBack = AnalysisPhase
val optionVariants: List[List[String]] = { val optionVariants: List[List[String]] = {
val isZ3Available = try {
Z3Interpreter.buildDefault
true
} catch {
case e: java.io.IOException =>
false
}
val isCVC4Available = try { val isCVC4Available = try {
CVC4Interpreter.buildDefault CVC4Interpreter.buildDefault
...@@ -32,14 +25,9 @@ class NewSolversRegression extends VerificationRegression { ...@@ -32,14 +25,9 @@ class NewSolversRegression extends VerificationRegression {
false false
} }
( if (isCVC4Available)
if (isZ3Available) List(List("--solvers=smt-cvc4-cex,smt-cvc4-proof", "--timeout=15"))
List(List("--solvers=smt-z3-q", "--feelinglucky", "--timeout=3")) else Nil
else Nil
) ++ (
if (isCVC4Available)
List(List("--solvers=smt-cvc4-proof", "--feelinglucky", "--timeout=3"))
else Nil
)
} }
} }
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment