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

make lar_solver pretty printer const on the solver

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2020-04-14 15:37:46 -07:00
parent 5208b64a6b
commit 95cb828324
7 changed files with 32 additions and 22 deletions

View file

@ -81,7 +81,11 @@ private:
#endif
void shrink_explanation(const svector<unsigned>& basis_rows);
bool overflow() const;
lia_move create_cut(lar_term& t, mpq& k, explanation* ex, bool & upper, const vector<mpq> & x0);
lia_move create_cut(lar_term& t, mpq& k, explanation* ex, bool & upper
#ifdef Z3DEBUG
, const vector<mpq> & x0
#endif
);
svector<unsigned> vars() const;
};
}