[Quantproject-developers] QuantProject/b1_ADT/Optimizing/Genetic Genome.cs, 1.11, 1.12
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2006-08-02 21:55:47
|
Update of /cvsroot/quantproject/QuantProject/b1_ADT/Optimizing/Genetic In directory sc8-pr-cvs7.sourceforge.net:/tmp/cvs-serv1350/b1_ADT/Optimizing/Genetic Modified Files: Genome.cs Log Message: Fixed bug in Clone() method: field "generation" is now properly initialized to the value of the genome that has to be cloned Index: Genome.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b1_ADT/Optimizing/Genetic/Genome.cs,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** Genome.cs 30 Jul 2006 14:00:28 -0000 1.11 --- Genome.cs 2 Aug 2006 21:55:42 -0000 1.12 *************** *** 158,161 **** --- 158,162 ---- returnValue.Fitness = this.Fitness; returnValue.Meaning = this.Meaning; + returnValue.generation = this.Generation; returnValue.hasBeenCloned = true; |