3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-10-09 01:11:55 +00:00

check monomial values in niil_solver

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2018-08-13 12:48:41 +08:00
parent f6291abccb
commit 91086baa54
2 changed files with 27 additions and 3 deletions

View file

@ -142,6 +142,11 @@ public :
const impq& get_column_value(unsigned j) const {
return m_mpq_lar_core_solver.m_r_x[j];
}
const mpq& get_column_value_rational(unsigned j) const {
return m_mpq_lar_core_solver.m_r_x[j].x;
}
bool is_term(var_index j) const;
bool column_is_fixed(unsigned j) const;
public: