-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
1b1f55d
commit fd5f98d
Showing
3 changed files
with
34 additions
and
13 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 |
---|---|---|
@@ -1,13 +1,13 @@ | ||
#!/bin/bash | ||
|
||
rm ../examples/res.txt | ||
rm $1/res.txt | ||
for net in {1..3} | ||
do | ||
echo Evaluating network net${net}... | ||
for spec in `ls ../examples/net${net}/` | ||
for spec in `ls $1/net${net}/` | ||
do | ||
echo ${spec} | ||
res=$(python verifier.py --net net${net} --spec ../examples/net${net}/${spec}) | ||
echo net${k}_${net},$spec,$res >> ../examples/res.txt | ||
res=$(python verifier.py --net net${net} --spec $1/net${net}/${spec}) | ||
echo net${k}_${net},$spec,$res >> $1/res.txt | ||
done | ||
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