mirror of
https://github.com/Z3Prover/z3
synced 2025-04-29 03:45:51 +00:00
fix a bug in lar_solver in queryaing if a column is int
Signed-off-by: Lev Nachmanson <levnach@hotmail.com>
This commit is contained in:
parent
0a29002c2f
commit
db5ac5afa8
9 changed files with 26 additions and 24 deletions
|
@ -120,7 +120,7 @@ public:
|
|||
int ret = -1;
|
||||
int n = 0;
|
||||
for (int i = 0; i < static_cast<int>(b.size()); i++) {
|
||||
if (is_int(b[i])) continue;
|
||||
if (is_integer(b[i])) continue;
|
||||
if (n == 0 ) {
|
||||
lp_assert(ret == -1);
|
||||
n = 1;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue