3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-28 19:35:50 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-03-13 14:30:34 -07:00 committed by Lev Nachmanson
parent 906d52ca1c
commit 79fefe5fb3
3 changed files with 29 additions and 17 deletions

View file

@ -58,4 +58,10 @@ bool solver::influences_nl_var(lpvar j) const {
solver::~solver() {
dealloc(m_core);
}
std::ostream& solver::display(std::ostream& out) const {
m_core->print_monics(out);
return out;
}
}