mirror of
https://github.com/Z3Prover/z3
synced 2025-10-11 10:18:06 +00:00
working on card for sat
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
a412a554eb
commit
92e2d920fd
8 changed files with 839 additions and 12 deletions
|
@ -2752,6 +2752,7 @@ namespace sat {
|
|||
m_scc.collect_statistics(st);
|
||||
m_asymm_branch.collect_statistics(st);
|
||||
m_probing.collect_statistics(st);
|
||||
if (m_ext) m_ext->collect_statistics(st);
|
||||
}
|
||||
|
||||
void solver::reset_statistics() {
|
||||
|
@ -2856,6 +2857,9 @@ namespace sat {
|
|||
display_units(out);
|
||||
display_binary(out);
|
||||
out << m_clauses << m_learned;
|
||||
if (m_ext) {
|
||||
m_ext->display(out);
|
||||
}
|
||||
out << ")\n";
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue