[Quantproject-developers] QuantProject/b1_ADT ConstantsProvider.cs,1.12,1.13
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2005-07-31 20:03:39
|
Update of /cvsroot/quantproject/QuantProject/b1_ADT In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv17771/b1_ADT Modified Files: ConstantsProvider.cs Log Message: Fixed bugs in GenomeManagerForEfficientPortfolio; - added new property CurrentGeneticOptimizer to the IGenomeManager interface; - added new public method CalculateRandomFitness() for a new computation of fitness (now the code this new computation of fitness has been remarked: if you want more details, please write to me) Index: ConstantsProvider.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b1_ADT/ConstantsProvider.cs,v retrieving revision 1.12 retrieving revision 1.13 diff -C2 -d -r1.12 -r1.13 *** ConstantsProvider.cs 27 Jul 2005 22:32:05 -0000 1.12 --- ConstantsProvider.cs 31 Jul 2005 20:03:31 -0000 1.13 *************** *** 34,37 **** --- 34,42 ---- public static int SeedForRandomGenerator = 333; // for GeneticOptimizer and // GenomeManagement + public static int NumGenomesForRandomFitnessComputation = 100; + // for GeneticOptimizer (used by CalculateRandomFitness() in order + //to update averageRandomFitness and standardDeviationOfRandomFitness properties + + } } |