#!/bin/sh

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

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

while [ $i -le $2 ]
    do echo "Creating strongly k-consistent case # $i";
    ./GenStrongKProblem S ../input/strongK/s-$i ../output/solutions/strongK/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
