3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-11-25 23:19:32 +00:00

small change in factor to support TRACE

This commit is contained in:
Lev Nachmanson 2023-08-11 12:04:08 -10:00
parent a932e596eb
commit eb817f779d
2 changed files with 2 additions and 2 deletions

View file

@ -35,8 +35,7 @@ class factor {
bool m_sign{ false };
public:
factor(): factor(false) {}
explicit factor(bool sign): m_sign(sign) {}
factor(lpvar var): m_var(var), m_type(factor_type::VAR), m_sign(false) {}
explicit factor(lpvar var): m_var(var), m_type(factor_type::VAR), m_sign(false) {}
explicit factor(lpvar v, factor_type t) : m_var(v), m_type(t), m_sign(false) {}
unsigned var() const { return m_var; }
factor_type type() const { return m_type; }