mirror of
https://github.com/c-cube/sidekick.git
synced 2025-12-06 03:05:31 -05:00
small changes in smt
This commit is contained in:
parent
86bc9453d5
commit
4dcc3ea4ad
2 changed files with 6 additions and 6 deletions
|
|
@ -103,8 +103,8 @@ let create arg ?(stat = Stat.global) ?size ~proof ~theories tst () : t =
|
||||||
last_res = None;
|
last_res = None;
|
||||||
solver = Sat_solver.create ~proof ?size ~stat (SI.to_sat_plugin si);
|
solver = Sat_solver.create ~proof ?size ~stat (SI.to_sat_plugin si);
|
||||||
stat;
|
stat;
|
||||||
count_clause = Stat.mk_int stat "solver.add-clause";
|
count_clause = Stat.mk_int stat "smt.solver.add-clause";
|
||||||
count_solve = Stat.mk_int stat "solver.solve";
|
count_solve = Stat.mk_int stat "smt.solver.solve";
|
||||||
}
|
}
|
||||||
in
|
in
|
||||||
add_theory_l self theories;
|
add_theory_l self theories;
|
||||||
|
|
|
||||||
|
|
@ -607,10 +607,10 @@ let create (module A : ARG) ~stat ~proof (tst : Term.store) () : t =
|
||||||
registry = Registry.create ();
|
registry = Registry.create ();
|
||||||
preprocessed = Term.Tbl.create 32;
|
preprocessed = Term.Tbl.create 32;
|
||||||
delayed_actions = Queue.create ();
|
delayed_actions = Queue.create ();
|
||||||
count_axiom = Stat.mk_int stat "solver.th-axioms";
|
count_axiom = Stat.mk_int stat "smt.solver.th-axioms";
|
||||||
count_preprocess_clause = Stat.mk_int stat "solver.preprocess-clause";
|
count_preprocess_clause = Stat.mk_int stat "smt.solver.preprocess-clause";
|
||||||
count_propagate = Stat.mk_int stat "solver.th-propagations";
|
count_propagate = Stat.mk_int stat "smt.solver.th-propagations";
|
||||||
count_conflict = Stat.mk_int stat "solver.th-conflicts";
|
count_conflict = Stat.mk_int stat "smt.solver.th-conflicts";
|
||||||
on_partial_check = [];
|
on_partial_check = [];
|
||||||
on_final_check = [];
|
on_final_check = [];
|
||||||
on_th_combination = [];
|
on_th_combination = [];
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue