3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-08-26 13:06:05 +00:00
This commit is contained in:
Nikolaj Bjorner 2024-08-13 21:38:38 -07:00
parent 74c6eafde4
commit 4978f5a9ac
4 changed files with 29 additions and 132 deletions

View file

@ -73,9 +73,16 @@ public:
m_sls->assert_expr(g->form(i));
lbool res = m_sls->check();
m_st.reset();
m_sls->collect_statistics(m_st);
lbool res = l_undef;
try {
res = m_sls->check();
}
catch (z3_exception& ex) {
m_sls->collect_statistics(m_st);
throw;
}
// report_tactic_progress("Number of flips:", m_sls->get_num_moves());
IF_VERBOSE(10, verbose_stream() << res << "\n");
IF_VERBOSE(10, m_sls->display(verbose_stream()));