-
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Final touches for artifact submission
- Loading branch information
1 parent
6f29fdd
commit f509bcd
Showing
17 changed files
with
212 additions
and
543 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 |
---|---|---|
|
@@ -14,6 +14,7 @@ gradle.properties | |
*.jar | ||
*.so | ||
*.dll | ||
atlas | ||
|
||
# Nix | ||
result | ||
|
Large diffs are not rendered by default.
Oops, something went wrong.
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 was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
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,25 @@ | ||
#! /usr/bin/env bash | ||
|
||
set -euo pipefail | ||
|
||
function atlas_run () { | ||
(set -x ;atlas --home src/test/resources/examples \ | ||
run --tactics src/test/resources/tactics \ | ||
$@ ) | ||
} | ||
|
||
|
||
echo -e '\nSplayTree (inference)\n' | ||
atlas_run --infer "SplayTree\\.(splay(_max)?|insert|delete)" | ||
|
||
echo -e '\nSplayHeap (inference)\n' | ||
atlas_run --infer "SplayHeap\\.(insert|del_min)" | ||
|
||
echo -e '\nPairingHeap EXCEPT merge (inference)\n' | ||
atlas_run --infer "PairingHeap\\.(insert|merge_pairs|del_min_via_merge_pairs)_isolated" | ||
|
||
echo -e '\nPairingHeap.merge (checking)\n' | ||
atlas_run "PairingHeap\\.merge_isolated" | ||
|
||
echo -e '\nPairingHeap WITH merge (inference)\n' | ||
atlas_run --infer "PairingHeap\\.(insert|merge_pairs|del_min_via_merge_pairs|merge)_isolated" |
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
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
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