File tree Expand file tree Collapse file tree 2 files changed +2
-7
lines changed
regression/cbmc/Quantifiers-invalid-var-range Expand file tree Collapse file tree 2 files changed +2
-7
lines changed Original file line number Diff line number Diff line change 1
- KNOWNBUG broken-smt-backend
1
+ CORE no-new-smt
2
2
main.c
3
3
4
4
^\*\* Results:$
5
- ^\*\* 0 of 1 failed
5
+ ^\*\* 0 of \d+ failed
6
6
^VERIFICATION SUCCESSFUL$
7
7
^EXIT=0$
8
8
^SIGNAL=0$
9
9
--
10
10
^warning: ignoring
11
11
--
12
- This produces the expected verification result, but actually ignores some
13
- quantifiers.
Original file line number Diff line number Diff line change @@ -210,9 +210,6 @@ static std::optional<exprt> eager_quantifier_instantiation(
210
210
mp_integer lb = numeric_cast_v<mp_integer>(min_i.value ());
211
211
mp_integer ub = numeric_cast_v<mp_integer>(max_i.value ());
212
212
213
- if (lb > ub)
214
- return {};
215
-
216
213
auto expr_simplified =
217
214
quantifier_exprt (expr.id (), expr.variables (), where_simplified);
218
215
You can’t perform that action at this time.
0 commit comments