#!/bin/sh

if [ "$1" ]
   then i=$1
else
   i=1
fi

if [ "$2" ]
    then end=$2
else
    end=1000
fi

while [ $i -le $end ]
    do echo "Creating totally random s case # $i";
    ./GenTotalRand S ../input/totalRand/s-$i ../output/solutions/totalRand/s-$i;
    i=`echo $i + 1 | bc`
done
# Copyright 2002-2003 University of Guelph, All Rights Reserved
# Copyright 2002-2003 University of Guelph, All Rights Reserved
