Skip to content

Commit

Permalink
add solver variants: bitwuzla-abstraction and cvc5-int-blasting
Browse files Browse the repository at this point in the history
  • Loading branch information
daejunpark committed Nov 13, 2024
1 parent 883e286 commit b1dc7a2
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion src/jsi/config/solvers.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,11 @@
"model": "--produce-models",
"args": [],
"meta": "only supports model generation if smt file includes (get-model)"

},
"bitwuzla-abstraction": {
"executable": "bitwuzla",
"model": "--produce-models",
"args": ["--abstraction"]
},
"boolector": {
"executable": "boolector",
Expand All @@ -21,6 +25,11 @@
"model": "--produce-models",
"args": []
},
"cvc5-int-blasting": {
"executable": "cvc5",
"model": "--produce-models",
"args": ["--solve-bv-as-int=iand", "--iand-mode=bitwise"]
},
"stp": {
"executable": "stp",
"model": "--print-counterex",
Expand Down

0 comments on commit b1dc7a2

Please sign in to comment.