-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
25 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
// cksystemsgroup.github.io/unicorn | ||
// @SOLUTIONS = 1 | ||
// @UNROLL = 100 | ||
|
||
uint64_t main() { | ||
uint64_t a; | ||
|
||
a = VERIFIER_nondet_uchar(); | ||
|
||
if (a == 0) | ||
exit(0); | ||
else | ||
while (a > 0) { | ||
a = a - 1; | ||
} | ||
} |
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 |
---|---|---|
@@ -1,9 +1,9 @@ | ||
#!/bin/bash | ||
i=1 | ||
|
||
while [ $i -le 150 ] | ||
while [ $i -le 300 ] | ||
do | ||
echo $i | ||
../target/debug/unicorn beator tiny1.m --unroll $i --prune --solver boolector | ||
../target/debug/unicorn beator branching2.m --unroll $i --prune --solver boolector | ||
((i++)) | ||
done |
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