Skip to content

Commit

Permalink
Remove 8k NN limit, we validate this in python now (#110)
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew-Dickinson authored Oct 1, 2024
1 parent df0c5fc commit 8974e8f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions bin/nn_stats.sh
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,8 @@ echo "Network Number: $1";
# test if input is a number under 8000

if (( $1 )) 2>/dev/null; then
if (( $1 > 8000 )) ; then
echo "FATAL: Network numbers are below 8000."
if (( $1 < 0 )) ; then
echo "FATAL: Network numbers are greater than 0."
exit
fi
else
Expand Down

0 comments on commit 8974e8f

Please sign in to comment.