mirror of
https://github.com/Z3Prover/z3
synced 2025-08-17 08:42:15 +00:00
wip - dependent expr simpliifer
- simplify iterator over current indices - add more simplifiers used by asserted_formulas - improve diagnostics printing
This commit is contained in:
parent
bec3acd146
commit
b084821a0c
25 changed files with 553 additions and 158 deletions
|
@ -32,6 +32,10 @@ namespace euf {
|
|||
struct stats {
|
||||
unsigned m_num_steps = 0;
|
||||
unsigned m_num_elim_vars = 0;
|
||||
void reset() {
|
||||
m_num_steps = 0;
|
||||
m_num_elim_vars = 0;
|
||||
}
|
||||
};
|
||||
|
||||
struct config {
|
||||
|
@ -78,5 +82,7 @@ namespace euf {
|
|||
|
||||
void collect_statistics(statistics& st) const override;
|
||||
|
||||
void reset_statistics() override { m_stats.reset(); }
|
||||
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue