mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 20:05:51 +00:00
na
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
d83d0a83d6
commit
aa66be9406
9 changed files with 428 additions and 87 deletions
|
@ -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() {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue