Skip to content

Commit 91e7214

Browse files
committed
Remove (apparently) outdated arguments for CVC4
This also fixes the integration tests.
1 parent 3e23701 commit 91e7214

File tree

2 files changed

+0
-19
lines changed

2 files changed

+0
-19
lines changed

src/it/scala/smtlib/it/TestHelpers.scala

Lines changed: 0 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -61,29 +61,12 @@ trait TestHelpers {
6161
}
6262

6363
def executeZ3(file: File)(f: (String) => Unit): Unit = {
64-
//Seq("z3", "-smt2", file.getPath).lineStream
6564
Seq("z3", "-smt2", file.getPath) ! ProcessLogger(f, s => ())
6665
}
6766

6867
def executeCVC4(file: File)(f: (String) => Unit): Unit = {
69-
//Seq("cvc4", "--lang", "smt", "--incremental", "--produce-models", file.getPath).lineStream
7068
Seq("cvc4", "--lang", "smt", "--incremental", "--produce-models", file.getPath) ! ProcessLogger(f, s => ())
7169
}
7270

73-
// def mkTest(file: File)(block: => Unit) = {
74-
//
75-
// if(isZ3Available) {
76-
// test("SMTLIB benchmark: " + file.getPath) {
77-
// (new ScriptRunner).run(file)
78-
// }
79-
// }
80-
//
81-
// if(isCVC4Available) {
82-
//
83-
// }
84-
//
85-
// }
86-
//
87-
8871
}
8972

src/main/scala/smtlib/interpreters/CVC4Interpreter.scala

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,6 @@ object CVC4Interpreter {
3434
val executable = "cvc4"
3535
val args = Array("-q",
3636
"--produce-models",
37-
"--no-incremental",
38-
"--tear-down-incremental",
3937
"--dt-rewrite-error-sel",
4038
"--print-success",
4139
"--lang", "smt2.5")

0 commit comments

Comments
 (0)