Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update cvc4 to cvc5 #741

Merged
merged 1 commit into from
Jun 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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