Skip to content

Commit 6b9dc2b

Browse files
authored
Merge pull request #741 from ethereum/update-cvc4-to-cvc5
Update cvc4 to cvc5
2 parents fa19cf8 + 3ba9758 commit 6b9dc2b

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -152,7 +152,7 @@ return either an error or the result from the solver. A default
152152
``smtchecker.js`` which exports the ``smtCallback`` function that takes 1) a
153153
function that takes queries and returns the solving result, and 2) a solver
154154
configuration object. The module ``smtsolver.js`` has a few predefined solver
155-
configurations, and relies on Z3, Eldarica or CVC4 being installed locally. It
155+
configurations, and relies on Z3, Eldarica or cvc5 being installed locally. It
156156
exports the list of locally found solvers and a function that invokes a given
157157
solver.
158158

smtsolver.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,8 +18,8 @@ const potentialSolvers = [
1818
params: '-horn -t:' + (timeout / 1000) // Eldarica takes timeout in seconds.
1919
},
2020
{
21-
name: 'cvc4',
22-
command: 'cvc4',
21+
name: 'cvc5',
22+
command: 'cvc5',
2323
params: '--lang=smt2 --tlimit=' + timeout
2424
}
2525
];

0 commit comments

Comments
 (0)