mirror of
https://github.com/Z3Prover/z3
synced 2025-05-03 22:05:45 +00:00
a version with less pointers: got a conflict
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
5a36e02c58
commit
52653e6e43
7 changed files with 181 additions and 74 deletions
|
@ -166,7 +166,14 @@ namespace lp {
|
|||
|
||||
lia_move solve_dioph_eq() {
|
||||
dioph_eq de(lia);
|
||||
de.check();
|
||||
lia_move r = de.check();
|
||||
|
||||
if (r == lia_move::unsat) {
|
||||
de.explain(*this->m_ex);
|
||||
} else if (r == lia_move::sat) {
|
||||
NOT_IMPLEMENTED_YET();
|
||||
}
|
||||
|
||||
return lia_move::undef;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue