3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-05-01 12:55:52 +00:00

wip - proof logging fixes

This commit is contained in:
Nikolaj Bjorner 2022-10-18 11:20:56 -07:00
parent 1fc77c8c00
commit f0b85716a9
3 changed files with 22 additions and 9 deletions

View file

@ -89,7 +89,7 @@ namespace euf {
// for logging
map<symbol, unsigned, symbol_hash_proc, symbol_eq_proc> m_hint2hit;
map<symbol, unsigned, symbol_hash_proc, symbol_eq_proc> m_hint2hit, m_hint2miss;
unsigned m_num_logs = 0;
void add_units() {
@ -98,7 +98,7 @@ namespace euf {
m_units.push_back(units[i].first);
}
void log_verified(app* proof_hint);
void log_verified(app* proof_hint, bool success);
void diagnose_rup_failure(expr_ref_vector const& clause);