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