3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-29 20:05:51 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2020-09-03 07:16:59 -07:00
parent d83d0a83d6
commit aa66be9406
9 changed files with 428 additions and 87 deletions

View file

@ -236,11 +236,13 @@ namespace euf {
}
enode* solver::mk_true() {
return visit(m.mk_true());
VERIFY(visit(m.mk_true()));
return m_egraph.find(m.mk_true());
}
enode* solver::mk_false() {
return visit(m.mk_false());
VERIFY(visit(m.mk_false()));
return m_egraph.find(m.mk_false());
}
sat::check_result solver::check() {