3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-07-19 10:52:02 +00:00

debug tangent lemmas

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-05-08 12:26:13 -07:00
parent 0c50971b57
commit df5f3f9722
6 changed files with 31 additions and 8 deletions

View file

@ -195,6 +195,7 @@ public:
unsigned limit_on_rows_for_hnf_cutter;
unsigned limit_on_columns_for_hnf_cutter;
bool m_enable_hnf;
bool m_print_external_var_name;
#ifdef Z3DEBUG
unsigned m_counter_for_debug;
#endif
@ -266,10 +267,10 @@ public:
limit_on_rows_for_hnf_cutter(75),
limit_on_columns_for_hnf_cutter(150),
m_enable_hnf(true)
#ifdef Z3DEBUG
m_print_external_var_name(false),
#ifdef Z3DEBUG
, m_counter_for_debug(0)
#endif
#endif
{}
void set_resource_limit(lp_resource_limit& lim) { m_resource_limit = &lim; }