Skip to content

Commit

Permalink
Merge pull request #741 from ethereum/update-cvc4-to-cvc5
Browse files Browse the repository at this point in the history
Update cvc4 to cvc5
  • Loading branch information
r0qs authored Jun 21, 2024
2 parents fa19cf8 + 3ba9758 commit 6b9dc2b
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@ return either an error or the result from the solver. A default
``smtchecker.js`` which exports the ``smtCallback`` function that takes 1) a
function that takes queries and returns the solving result, and 2) a solver
configuration object. The module ``smtsolver.js`` has a few predefined solver
configurations, and relies on Z3, Eldarica or CVC4 being installed locally. It
configurations, and relies on Z3, Eldarica or cvc5 being installed locally. It
exports the list of locally found solvers and a function that invokes a given
solver.

Expand Down
4 changes: 2 additions & 2 deletions smtsolver.ts
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ const potentialSolvers = [
params: '-horn -t:' + (timeout / 1000) // Eldarica takes timeout in seconds.
},
{
name: 'cvc4',
command: 'cvc4',
name: 'cvc5',
command: 'cvc5',
params: '--lang=smt2 --tlimit=' + timeout
}
];
Expand Down

0 comments on commit 6b9dc2b

Please sign in to comment.