3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 11:25:51 +00:00

propogation based order lemma

Signed-off-by: Lev <levnach@hotmail.com>
This commit is contained in:
Lev 2019-01-29 18:02:06 -08:00 committed by Lev Nachmanson
parent 1235621610
commit 348faf15b1
2 changed files with 100 additions and 74 deletions

View file

@ -34,7 +34,7 @@ class factor {
factor_type m_type;
public:
factor() {}
factor(unsigned j) : factor(j, factor_type::VAR) {}
explicit factor(unsigned j) : factor(j, factor_type::VAR) {}
factor(unsigned i, factor_type t) : m_index(i), m_type(t) {}
unsigned index() const {return m_index;}
unsigned& index() {return m_index;}