[Quantproject-developers] QuantProject/b1_ADT ConstantsProvider.cs,1.11,1.12
Brought to you by:
glauco_1
|
From: Marco M. <mi...@us...> - 2005-07-27 22:32:23
|
Update of /cvsroot/quantproject/QuantProject/b1_ADT In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv28334/b1_ADT Modified Files: ConstantsProvider.cs Log Message: Added constant for getting the seed for the random generator of the GeneticOptimizer and the GenomeManagement class Index: ConstantsProvider.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b1_ADT/ConstantsProvider.cs,v retrieving revision 1.11 retrieving revision 1.12 diff -C2 -d -r1.11 -r1.12 *** ConstantsProvider.cs 19 Jun 2005 14:57:11 -0000 1.11 --- ConstantsProvider.cs 27 Jul 2005 22:32:05 -0000 1.12 *************** *** 32,35 **** --- 32,37 ---- public static int CachePages = 1000; public static int PagesToBeRemovedFromCache = 500; // for Garbage Collection + public static int SeedForRandomGenerator = 333; // for GeneticOptimizer and + // GenomeManagement } } |