Skip to content

Commit fe99f7d

Browse files
authored
tentatively tweak z3 solver parameter, as suggested by Can C (#744)
This makes one larger in-progress CN proof almost twice as fast. Tentatively putting this here to see the affect on the CI benchmarks.
1 parent 6029b76 commit fe99f7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

backend/cn/lib/simple_smt.ml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -901,5 +901,5 @@ let cvc5 : solver_config =
901901

902902
let z3 : solver_config =
903903
(* let params = [ ("sat.smt", "true") ] in *)
904-
let params = [] in
904+
let params = [ ("smt.relevancy", "0") ] in
905905
{ exe = "z3"; opts = [ "-in"; "-smt2" ]; params; exts = Z3; log = quiet_log }

0 commit comments

Comments
 (0)