mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-06 11:15:43 -05:00
fix output so benchpress can parse it
This commit is contained in:
parent
663f291bd5
commit
27ccd367b2
1 changed files with 2 additions and 2 deletions
|
|
@ -195,7 +195,7 @@ let solve ?gc:_ ?restarts:_ ?proof_file ?(pp_model = false) ?(check = false)
|
||||||
);
|
);
|
||||||
*)
|
*)
|
||||||
let t3 = Sys.time () in
|
let t3 = Sys.time () in
|
||||||
Fmt.printf "sat@.";
|
Fmt.printf "@.sat@.";
|
||||||
Fmt.printf "; (%.3f/%.3f/%.3f)@." (t1 -. start) (t2 -. t1) (t3 -. t2)
|
Fmt.printf "; (%.3f/%.3f/%.3f)@." (t1 -. start) (t2 -. t1) (t3 -. t2)
|
||||||
| Solver.Unsat { unsat_step_id; unsat_core = _ } ->
|
| Solver.Unsat { unsat_step_id; unsat_core = _ } ->
|
||||||
if check then
|
if check then
|
||||||
|
|
@ -228,7 +228,7 @@ let solve ?gc:_ ?restarts:_ ?proof_file ?(pp_model = false) ?(check = false)
|
||||||
| _ -> ());
|
| _ -> ());
|
||||||
|
|
||||||
let t3 = Sys.time () in
|
let t3 = Sys.time () in
|
||||||
Fmt.printf "unsat@.";
|
Fmt.printf "@.unsat@.";
|
||||||
Fmt.printf "; (%.3f/%.3f/%.3f)@." (t1 -. start) (t2 -. t1) (t3 -. t2)
|
Fmt.printf "; (%.3f/%.3f/%.3f)@." (t1 -. start) (t2 -. t1) (t3 -. t2)
|
||||||
| Solver.Unknown reas ->
|
| Solver.Unknown reas ->
|
||||||
Fmt.printf "unknown@.";
|
Fmt.printf "unknown@.";
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue