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

fix a bug in factorization

Signed-off-by: Lev <levnach@hotmail.com>
This commit is contained in:
Lev 2018-12-13 12:32:45 -10:00 committed by Lev Nachmanson
parent ef87054fe0
commit 267457aaf4
4 changed files with 41 additions and 14 deletions

View file

@ -100,7 +100,7 @@ struct const_iterator_mon {
struct factorization_factory {
const svector<lpvar>& m_vars;
// returns true if found
virtual bool find_monomial_of_vars(const svector<lpvar>& vars, unsigned& i) const = 0;
virtual bool find_rm_monomial_of_vars(const svector<lpvar>& vars, unsigned& i) const = 0;
factorization_factory(const svector<lpvar>& vars) :
m_vars(vars) {