#!/bin/bash #------------------------------------------------------------- # # Copyright (C) 2000 Stefan Schoenauer, Peter Clote, Sebastian Will. # All Rights Reserved. # # Permission to use, copy, modify, and distribute this # software and its documentation for NON-COMMERCIAL purposes # and without fee is hereby granted provided that this # copyright notice appears in all copies. # # # THE AUTHOR AND PUBLISHER MAKE NO REPRESENTATIONS OR # WARRANTIES ABOUT THE SUITABILITY OF THE SOFTWARE, EITHER # EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE # IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A # PARTICULAR PURPOSE, OR NON-INFRINGEMENT. THE AUTHORS # AND PUBLISHER SHALL NOT BE LIABLE FOR ANY DAMAGES SUFFERED # BY LICENSEE AS A RESULT OF USING, MODIFYING OR DISTRIBUTING # THIS SOFTWARE OR ITS DERIVATIVES. # #------------------------------------------------------------- out=$3 echo "Random generation of " $1 "general codes" >> $out echo "Begin:" `date` >> $out echo "=========================" >> $out gcode --num=$1 --generations=$2 "wac.mat" >> $out # $1 codes, $2 iterations per fixed Temp echo "=========================" >> $out echo "End:" `date` >> $out