mirror of
https://github.com/Z3Prover/z3
synced 2025-11-07 14:55:06 +00:00
narrowing incorrect lemma generation
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
3bf072557e
commit
4ffd860375
3 changed files with 8 additions and 7 deletions
|
|
@ -1512,7 +1512,7 @@ public:
|
|||
if (r1.is_int() && r2.is_int() && r == div(r1, r2)) {
|
||||
continue;
|
||||
}
|
||||
if (r2.is_neg()) {
|
||||
if (r2.is_neg() || r1.is_neg()) {
|
||||
// TBD
|
||||
continue;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue