lo vertpos.sim

//genetic format: 0,1,2,3,4,7
ExpParams.initialgen = GenMan.getSimplest(7).genotype;

//Simulator.creatwarnfail=1; //don't simulate genotypes with warnings
//mutations and xovers
//ExpParams.p_mut = 9;
//ExpParams.p_xov = 1;
//ExpParams.stagnation=5000;


//popsizes: 10,40,80,130
ExpParams.capacity=10;

//selection and deletion
//case 1:
ExpParams.delrule=0; //random
ExpParams.selrule=2; //2-tournament
//case 2:
ExpParams.delrule=0; //random
ExpParams.selrule=5; //5-tournament
//case 3: (for f0, f1 and f4 only)
ExpParams.delrule=2; //worst
ExpParams.selrule=2; //2-tournament


Math.seed=Math.time*100;
Simulator.init();

go
