mirror of
https://github.com/Z3Prover/z3
synced 2025-04-23 17:15:31 +00:00
bug fixes
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
133f376172
commit
6b88446ee8
4 changed files with 349 additions and 122 deletions
|
@ -469,7 +469,9 @@ Notes:
|
|||
}
|
||||
|
||||
literal mk_ordered_1(bool full, bool is_eq, unsigned n, literal const* xs) {
|
||||
if (n <= 1 && !is_eq) return ctx.mk_true();
|
||||
if (n <= 1 && !is_eq) {
|
||||
return ctx.mk_true();
|
||||
}
|
||||
if (n == 0) {
|
||||
return ctx.mk_false();
|
||||
}
|
||||
|
@ -477,6 +479,8 @@ Notes:
|
|||
return xs[0];
|
||||
}
|
||||
|
||||
SASSERT(n > 1);
|
||||
|
||||
// y0 -> y1
|
||||
// x0 -> y0
|
||||
// x1 -> y1
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue