#! /bin/sh

for i in 1 2 3 4 5 6 7 8 9 10 11 12
do 
echo ${i}th starting sics, `date`
/local/bin/sicstus << sics_ends_here 
compile( run ).
run( [$i,'runs/seeds_effect_stark','/local/tara/lnai/sics_scl_387'] ).
halt.
sics_ends_here
echo ${i}th sics_finished, `date`

/bin/sleep 30

echo ${i}th starting yap, `date`
/local/cvs/bin/yap << yap_ends_here
compile( run ).
run( [$i,'runs/seeds_effect_stark','/local/tara/lnai/yap_scl'] ).
halt.
yap_ends_here
echo ${i}th yap_finished, `date`

/bin/sleep 30
done

exit
