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

var_eqs compiles but broken

This commit is contained in:
Lev Nachmanson 2019-04-02 21:30:36 -07:00
parent f828dc9451
commit 09152013b3
10 changed files with 407 additions and 47 deletions

View file

@ -18,7 +18,6 @@ namespace nla {
// fields
lp::var_index m_v;
svector<lp::var_index> m_vs;
rational m_coeff;
public:
// constructors
monomial(lp::var_index v, unsigned sz, lp::var_index const* vs):
@ -38,7 +37,6 @@ namespace nla {
svector<lp::var_index>::const_iterator end() const { return m_vs.end(); }
const svector<lp::var_index> vars() const { return m_vs; }
bool empty() const { return m_vs.empty(); }
const rational& get_coeff() const { return m_coeff; }
};
typedef std::unordered_map<lp::var_index, rational> variable_map_type;