p=Population("NORMAL",[2,2],False);
p.setChildDist(2);
p.setFatherDist(2);
p.setRecombRate([R1,R2]);
p.setMutationRate([0.33,0.33]);
p.setMutationFactor(2);
p.setBirthAge(50);
p.setReproductionAge(80);
p.setB(14);
p.setT(2);
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='rR1_rR2_pb2_%08ic' % l.getGennum();
      l.chrTxt(fname)
#l.save("dump");
