p=Population("NORMAL",[2,6],False);
p.setChildDist(2);
p.setFatherDist(2);
p.setRecombRate([0.090,0.762]);
p.setMutationRate([0.33,0.66]);
p.setMutationFactor(2);
p.setBirthAge(50);
p.setReproductionAge(80);
p.setB(14);
p.setT(1);
p.init("zero");

l=Lattice(64,64);
l.fill(p);

a=10000;

for j in range(0,10):
      for i in range(0, a):
      	  l.nexGen();
      fname='r0.090_r0.762_pb2_%08ic' % l.getGennum();
      l.chrTxt(fname)
l.save("dump");
l.statistics("stats");