File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -152,7 +152,7 @@ return either an error or the result from the solver. A default
152
152
`` smtchecker.js `` which exports the `` smtCallback `` function that takes 1) a
153
153
function that takes queries and returns the solving result, and 2) a solver
154
154
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
156
156
exports the list of locally found solvers and a function that invokes a given
157
157
solver.
158
158
Original file line number Diff line number Diff line change @@ -18,8 +18,8 @@ const potentialSolvers = [
18
18
params : '-horn -t:' + ( timeout / 1000 ) // Eldarica takes timeout in seconds.
19
19
} ,
20
20
{
21
- name : 'cvc4 ' ,
22
- command : 'cvc4 ' ,
21
+ name : 'cvc5 ' ,
22
+ command : 'cvc5 ' ,
23
23
params : '--lang=smt2 --tlimit=' + timeout
24
24
}
25
25
] ;
You can’t perform that action at this time.
0 commit comments