Skip to content

Commit

Permalink
Remove 'gap.sh' references
Browse files Browse the repository at this point in the history
  • Loading branch information
ChrisJefferson committed Nov 29, 2023
1 parent edf34d7 commit 0ed11e2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nongap-tst/symmetry_detect/symmetry_detect_test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ tempfile=".symmetry_tester_temp_file"
#run savilerow if eprime symmetry detect if json, exit if invalid args
if [ "$1" = "-json" ] ; then
json=${2}
$(dirname $0)/jsonToGap.py <(symmetry_detect --json "$json") "$3" | gap.sh -q | grep 'true' > /dev/null
$(dirname $0)/jsonToGap.py <(symmetry_detect --json "$json") "$3" | gap -q | grep 'true' > /dev/null
status=$?
elif [ "$1" = "-eprime" ] ; then
savilerow "$2" -var-sym-breaking > /dev/null
Expand All @@ -20,7 +20,7 @@ elif [ "$1" = "-eprime" ] ; then
exit 2
fi
json=${2}.json
$(dirname $0)/jsonToGap.py <(symmetry_detect --json "$json") "$3" | gap.sh -q | grep 'true' > /dev/null
$(dirname $0)/jsonToGap.py <(symmetry_detect --json "$json") "$3" | gap -q | grep 'true' > /dev/null
status=$?
else
echo $usage
Expand Down

0 comments on commit 0ed11e2

Please sign in to comment.