mirror of
https://github.com/Z3Prover/z3
synced 2025-08-26 13:06:05 +00:00
fixes
This commit is contained in:
parent
74c6eafde4
commit
4978f5a9ac
4 changed files with 29 additions and 132 deletions
|
@ -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()));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue