We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent acd3e7c commit 86a6b58Copy full SHA for 86a6b58
src/smtml/cvc5_mappings.default.ml
@@ -423,7 +423,8 @@ module Fresh_cvc5 () = struct
423
let get_symbols _ =
424
Fmt.failwith "Cvc5_mappings: get_symbols not implemented"
425
426
- let eval ?completion:_ solver term = Some (Solver.get_value solver term)
+ let eval ?ctx:_ ?completion:_ solver term =
427
+ Some (Solver.get_value solver term)
428
end
429
430
module Solver = struct
@@ -434,7 +435,7 @@ module Fresh_cvc5 () = struct
434
435
| Unsat_core ->
436
Solver.set_option slv "produce-unsat-cores" (string_of_bool v)
437
| Ematching -> Solver.set_option slv "e-matching" (string_of_bool v)
- | Parallel | Num_threads -> ()
438
+ | Parallel | Num_threads | Debug -> ()
439
440
let set_params slv params =
441
List.iter
0 commit comments