make check Command I picked up in the automake documentation (RTFM, you know) Tagged a lot of header functions in the GnuPlot files with 'inline', so they can be used from more than one sourcefile. Ok, now the interesting news. Started a new library libga (not to be confused with Matthew's GaLib). Here I suggest we put a fairly complete and configurable genetic algorithm. Just to see how far we can stretch ourselves and also to have a GA-componenent that can be used in other applications without having to rebuild the entire thing. test/t-eoGA.cpp tests this library
42 lines
798 B
Bash
Executable file
42 lines
798 B
Bash
Executable file
#!/bin/sh
|
|
echo "Starting t-eo"
|
|
./t-eo > eo.log
|
|
|
|
echo "Starting t-eoReplacement"
|
|
./t-eoReplacement > replacement.log
|
|
|
|
echo "Starting t-eoCheckpointing"
|
|
./t-eoCheckpointing > checkpointing.log
|
|
|
|
echo "Testing -h"
|
|
./t-eoCheckpointing -h > ch2.log
|
|
|
|
echo "Testing t-eoExternalEO"
|
|
./t-eoExternalEO > externalEO.log
|
|
|
|
echo "Testing t-eoGenOp"
|
|
./t-eoGenOp > genOp.log
|
|
|
|
echo "Testing t-eoSelect"
|
|
./t-eoSelect > select.log
|
|
|
|
echo "Testing t-eoStateAndParser"
|
|
# TODO, many different parameter settings and checks
|
|
./t-eoStateAndParser > stateAndParser.log
|
|
|
|
echo "Testing t-eoSymreg"
|
|
./t-eoSymreg > symreg.log
|
|
|
|
echo "Testing t-eobin"
|
|
./t-eobin > bin.log
|
|
|
|
echo "Testing t-eofitness"
|
|
./t-eofitness > fitness.log
|
|
|
|
echo "Testing t-eoGA"
|
|
./t-eoGA > t-eoGA.log
|
|
|
|
echo "Finished"
|
|
|
|
#TODO test if an error occured
|
|
echo "Ok"
|