3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 11:55:51 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2019-04-30 11:36:16 -07:00 committed by Lev Nachmanson
parent 8cdf754990
commit 25edc98f36
5 changed files with 60 additions and 26 deletions

View file

@ -70,6 +70,10 @@ public:
}
};
inline std::ostream& operator<<(std::ostream& out, monomial const& m) {
return out << m.var() << " := " << m.vars() << " r " << m.rsign() << " * " << m.rvars();
}
typedef std::unordered_map<lpvar, rational> variable_map_type;
template <typename T>