Skip to content

Commit

Permalink
Use threshold widening in Freiburg nondet_inc_with_ghosts
Browse files Browse the repository at this point in the history
  • Loading branch information
sim642 committed Oct 20, 2023
1 parent 4c54140 commit e1e0813
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions tests/regression/46-apron2/67-nondet_inc_with_ghosts.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// PARAM: --enable ana.sv-comp.functions --set ana.activated[+] apron --set ana.relation.privatization mutex-meet --set sem.int.signed_overflow assume_none
// PARAM: --enable ana.sv-comp.functions --set ana.activated[+] apron --set ana.relation.privatization mutex-meet --set sem.int.signed_overflow assume_none --enable ana.apron.threshold_widening
#include <pthread.h>
#include <assert.h>

Expand All @@ -19,7 +19,7 @@ void* inc()
__VERIFIER_atomic_end();

__VERIFIER_atomic_begin();
assert(x >= g); // TODO
assert(x >= g);
__VERIFIER_atomic_end();
}

Expand Down
4 changes: 2 additions & 2 deletions tests/regression/46-apron2/68-nondet_inc_with_ghosts-2.c
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
// PARAM: --enable ana.sv-comp.functions --set ana.activated[+] apron --set ana.relation.privatization mutex-meet --set sem.int.signed_overflow assume_none
// PARAM: --enable ana.sv-comp.functions --set ana.activated[+] apron --set ana.relation.privatization mutex-meet --set sem.int.signed_overflow assume_none --enable ana.apron.threshold_widening
#include <pthread.h>
#include <assert.h>

Expand All @@ -16,7 +16,7 @@ void* inc()
__VERIFIER_atomic_end();

__VERIFIER_atomic_begin();
assert(x >= g); // TODO
assert(x >= g);
__VERIFIER_atomic_end();
return 0;
}
Expand Down

0 comments on commit e1e0813

Please sign in to comment.