mirror of
https://github.com/Z3Prover/z3
synced 2025-08-25 04:26:00 +00:00
Debug (#4415)
* fix it explanation.h Signed-off-by: Lev Nachmanson <levnach@hotmail.com> * fix explanation.h Signed-off-by: Lev Nachmanson <levnach@hotmail.com> * add options to run bound propagation on monomials etc. Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
7e84a48069
commit
bfd2407e0f
6 changed files with 28 additions and 10 deletions
|
@ -65,7 +65,7 @@ public:
|
|||
public:
|
||||
cimpq(constraint_index var, const optional<mpq> & val) : m_var(var), m_coeff(val) { }
|
||||
constraint_index ci() const { return m_var; }
|
||||
mpq coeff() const { return m_coeff.undef()? one_of_type<mpq>(): *m_coeff; }
|
||||
mpq coeff() const { return m_coeff.initialized()? *m_coeff: one_of_type<mpq>(); }
|
||||
};
|
||||
class iterator {
|
||||
u_map<optional<mpq>>::iterator m_it;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue