[Quantproject-developers] QuantProject/b1_ADT/Optimizing/Genetic GenomeManagerTest.cs,1.2,1.3 Genome
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2005-07-13 16:37:29
|
Update of /cvsroot/quantproject/QuantProject/b1_ADT/Optimizing/Genetic In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv23124/b1_ADT/Optimizing/Genetic Modified Files: GenomeManagerTest.cs GenomeManagement.cs GenomeComparer.cs Genome.cs Log Message: The [Serializable] attribute has been added. Index: Genome.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b1_ADT/Optimizing/Genetic/Genome.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** Genome.cs 24 Jun 2005 22:23:15 -0000 1.4 --- Genome.cs 13 Jul 2005 16:37:04 -0000 1.5 *************** *** 31,34 **** --- 31,35 ---- /// provided by biology /// </summary> + [Serializable] public class Genome : IComparable { Index: GenomeManagerTest.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b1_ADT/Optimizing/Genetic/GenomeManagerTest.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** GenomeManagerTest.cs 10 Jun 2005 18:48:45 -0000 1.2 --- GenomeManagerTest.cs 13 Jul 2005 16:37:04 -0000 1.3 *************** *** 31,34 **** --- 31,35 ---- /// behaviour of the genetic optimizer /// </summary> + [Serializable] public class GenomeManagerTest : IGenomeManager { Index: GenomeComparer.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b1_ADT/Optimizing/Genetic/GenomeComparer.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** GenomeComparer.cs 17 May 2005 23:02:35 -0000 1.2 --- GenomeComparer.cs 13 Jul 2005 16:37:04 -0000 1.3 *************** *** 29,32 **** --- 29,33 ---- /// Compares genomes by fitness /// </summary> + [Serializable] public sealed class GenomeComparer : IComparer { Index: GenomeManagement.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b1_ADT/Optimizing/Genetic/GenomeManagement.cs,v retrieving revision 1.3 retrieving revision 1.4 diff -C2 -d -r1.3 -r1.4 *** GenomeManagement.cs 24 Jun 2005 22:25:49 -0000 1.3 --- GenomeManagement.cs 13 Jul 2005 16:37:04 -0000 1.4 *************** *** 32,35 **** --- 32,36 ---- /// (crossovering, mutating, etc.) /// </summary> + [Serializable] public sealed class GenomeManagement { |