This directory contains two examples for the ECJ master/slave evaluator.
See ec/eval/README for more information on how to run the evalutor.

NOTE: these examples are worst-case scenarios for the master/slave
evaluator -- they evaluate rapidly and so the time is CONSUMED by
transfering over the net.  The examples are only here to give you 
the idea of how to get your own jobs up and running.


Artificial Ant with 3 slaves (change the eval.master.host to the
	appropriate IP of the master's machine.  By default it's
	127.0.0.1, which only works if all the slaves are on the
	same machine as the host; this configuration is likely 
	only useful for testing purposes)

MASTER:		java ec.Evolve -file ant.master.params
EACH SLAVE:	java ec.eval.Slave -file ant.slave.params



Coevolve1 with 3 slaves (change the eval.master.host to the 
        appropriate IP of the master's machine.  By default it's
        127.0.0.1, which only works if all the slaves are on the
        same machine as the host; this configuration is likely 
        only useful for testing purposes). 
This one will be fairly slow because ECJ's coevolutionary evaluator
	cannot easily bulk up individuals to send off to a slave
	as a group; thus it incurs a severe networking cost.

MASTER:         java ec.Evolve -file coevolve1.master.params
EACH SLAVE:     java ec.eval.Slave -file coevolve1.slave.params

