-
Notifications
You must be signed in to change notification settings - Fork 76
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
divided meet function into meet and meet_with_one_conj and fixed bug …
…in meet_tcons
- Loading branch information
Showing
2 changed files
with
63 additions
and
38 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
// SKIP PARAM: --set ana.activated[+] lin2vareq --set sem.int.signed_overflow assume_none | ||
|
||
int main(void) { | ||
int x, y, z; | ||
|
||
if (x == 0) { | ||
__goblint_check(x == 0); // SUCCESS | ||
} else if (y - x == 3) { | ||
__goblint_check(y == x + 0); // FAILURE | ||
__goblint_check(y - x == 3); // SUCCESS | ||
} | ||
|
||
return 0; | ||
} |