3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-27 02:45:51 +00:00

start porting grobner basis functionality

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-09-04 18:33:54 -07:00
parent bfcfc517fe
commit 06dbc623c7
8 changed files with 170 additions and 7 deletions

View file

@ -110,6 +110,8 @@ struct stats {
unsigned m_horner_calls;
unsigned m_horner_conflicts;
unsigned m_cross_nested_forms;
unsigned m_grobner_calls;
unsigned m_grobner_conflicts;
stats() { reset(); }
void reset() { memset(this, 0, sizeof(*this)); }
};