3
0
Fork 0
mirror of https://github.com/Z3Prover/z3 synced 2025-04-23 17:15:31 +00:00
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
Nikolaj Bjorner 2021-12-12 10:26:54 -08:00
parent f1d46b58a4
commit 7bf76dd1f6
5 changed files with 30 additions and 23 deletions

View file

@ -956,7 +956,7 @@ namespace polysat {
s.add_eq(quot * y + rem - x);
s.add_diseq(a - quot);
s.add_noovfl(quot, y);
// s.add_ult(rem, x);
s.add_ult(rem, x);
s.check();
s.expect_sat();
}