[Quantproject-developers] QuantProject/b7_Scripts/WalkForwardTesting/LinearCombination OptimizationO
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2005-08-22 22:21:47
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/LinearCombination In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11132/b7_Scripts/WalkForwardTesting/LinearCombination Modified Files: OptimizationOutput.cs Log Message: - an ArrayList is inherited now - private members (and corresponding properties) firstDate and lastDate have been removed Index: OptimizationOutput.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/LinearCombination/OptimizationOutput.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** OptimizationOutput.cs 23 Jul 2005 17:54:32 -0000 1.1 --- OptimizationOutput.cs 22 Aug 2005 22:21:39 -0000 1.2 *************** *** 31,57 **** /// </summary> [Serializable] ! public class OptimizationOutput { ! private DateTime firstDate; ! public DateTime FirstDate ! { ! get { return this.firstDate; } ! } ! private DateTime lastDate; ! public DateTime LastDate ! { ! get { return this.lastDate; } ! } ! private ArrayList bestGenomes; ! public ArrayList BestGenomes { - get { return this.bestGenomes; } } ! public OptimizationOutput( DateTime firstDate , ! DateTime lastDate , ArrayList bestGenomes ) { ! this.firstDate = firstDate; ! this.lastDate = lastDate; ! this.bestGenomes = bestGenomes; } } --- 31,50 ---- /// </summary> [Serializable] ! public class OptimizationOutput : ArrayList { ! // public ArrayList BestGenomes ! // { ! // get { return this.bestGenomes; } ! // } ! public OptimizationOutput() { } ! /// <summary> ! /// Adds a genome representation ! /// </summary> ! /// <param name="genomeRepresentation"></param> ! public void Add( GenomeRepresentation genomeRepresentation ) { ! base.Add( genomeRepresentation ); } } |