We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3b7df3a commit d314c08Copy full SHA for d314c08
tests/verify/set-1.c
@@ -36,7 +36,9 @@ int main()
36
set_int_it pos = set_int_begin(&a);
37
set_int_find_range(&pos, a1);
38
#ifdef CBMC
39
- pos->end = nondet_int();
+ pos->begin = nondet_uint();
40
+ pos->end = nondet_uint();
41
+ _CPROVER_assume (pos->begin <= pos->end);
42
#endif
43
44
set_int_erase_it(&pos);
0 commit comments