mirror of
https://github.com/Z3Prover/z3
synced 2026-02-28 10:51:28 +00:00
fix crash regression
Signed-off-by: Nikolaj Bjorner <nbjorner@microsoft.com>
This commit is contained in:
parent
d1854ab4d2
commit
209d31346b
2 changed files with 5 additions and 4 deletions
|
|
@ -2294,8 +2294,8 @@ namespace sat {
|
|||
// literal is no longer watched.
|
||||
return l_undef;
|
||||
}
|
||||
SASSERT(index <= bound);
|
||||
SASSERT(c[index] == alit);
|
||||
VERIFY(index <= bound);
|
||||
VERIFY(c[index] == alit);
|
||||
|
||||
// find a literal to swap with:
|
||||
for (unsigned i = bound + 1; i < sz; ++i) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue