3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 19:35:50 +00:00

fix order lemmas for emons

Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
Lev Nachmanson 2019-04-24 14:07:58 -07:00
parent 150d3769fb
commit 9d6bf016fc
5 changed files with 33 additions and 20 deletions

View file

@ -36,6 +36,7 @@ template <typename T> rational common::val(T const& t) const { return c().val(t)
template rational common::val<monomial>(monomial const& t) const;
template rational common::val<factor>(factor const& t) const;
rational common::val(lpvar t) const { return c().val(t); }
rational common::rval(const monomial& m) const { return c().rval(m); }
template <typename T> lpvar common::var(T const& t) const { return c().var(t); }
template lpvar common::var<factor>(factor const& t) const;
template lpvar common::var<monomial>(monomial const& t) const;