mirror of
https://github.com/Z3Prover/z3
synced 2025-04-24 09:35:32 +00:00
Better exception recording
This commit is contained in:
parent
ceddb97bfd
commit
2bc1b3a6dd
1 changed files with 3 additions and 2 deletions
|
@ -257,8 +257,7 @@ namespace polysat {
|
|||
|
||||
void check() {
|
||||
auto* rec = test_records.active_or_new_record();
|
||||
rec->m_finished = true;
|
||||
m_last_finished = rec;
|
||||
m_last_finished = nullptr;
|
||||
SASSERT(rec->m_answer == l_undef);
|
||||
SASSERT(rec->m_expected == l_undef);
|
||||
SASSERT(rec->m_result == test_result::undefined);
|
||||
|
@ -270,6 +269,8 @@ namespace polysat {
|
|||
});
|
||||
m_last_result = check_sat();
|
||||
}
|
||||
rec->m_finished = true;
|
||||
m_last_finished = rec;
|
||||
std::cout << "DONE: " << m_name << ": " << m_last_result << "\n";
|
||||
statistics st;
|
||||
collect_statistics(st);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue