#!/bin/sh

# directory containing implementation and generator binaries (excpt Modula-3
# binaries.)
bindir=${bindir-../bin/}; export bindir

#directory where output should be written
resultsdir=${resultsdir-../results/}; export resultsdir

# list of implementations to be run on each instance
# ** change: just AR
prognames=${prognames-"uf_lds"}; export prognames

# list of graph sizes to be generated (not used by Karz). 
# ** change: except largest
numvertices=${numvertices-"16384 32768 65536"}; export numvertices

# cutnumseeds is the number of different seeds used at each graph size
cutnumseeds=${cutnumseeds-5}; export cutnumseeds

# List of type of graph to be generated by unimf
typelist=${typelist-" Blow Dobl Puff Saus Squa Wave"}; export typelist

# klist is a list of values of paramater k used by Karz
klist=${klist-"20 40 80"}; export klist


# Call scripts for the individual generators
run-Karz
run-rmfu long
run-rmfu wide
run-rmfu cube
run-unimf $typelist


