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

merge smon with monomial

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-04-22 16:33:58 -07:00
parent e73296fbe5
commit 53cc8048f7
20 changed files with 312 additions and 633 deletions

View file

@ -54,7 +54,7 @@ class factorization {
public:
factorization(const monomial* m): m_mon(m) {
if (m != nullptr) {
for (lpvar j : *m)
for (lpvar j : m->vars())
m_vars.push_back(factor(j, factor_type::VAR));
}
}