Make it more exponential

This commit is contained in:
Klaus-Uwe Mitterer 2014-12-10 02:14:50 +01:00
parent 0fa95f8eac
commit 9cb04e3774

View file

@ -26,7 +26,7 @@ while true;
printf '\n';
if [[ $1 = -e ]]
then i=$((i*2))
then i=$((i*i))
else i=$((i+1))
fi