[Quantproject-developers] QuantProject/b7_Scripts/WalkForwardTesting/LinearCombination OptimizationO
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2005-07-23 17:54:41
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/LinearCombination In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11921/b7_Scripts/WalkForwardTesting/LinearCombination Added Files: OptimizationOutput.cs Log Message: Data to be saved/load to/from disk, resulting from the optimization process. --- NEW FILE: OptimizationOutput.cs --- /* QuantProject - Quantitative Finance Library GenomeRepresentation.cs Copyright (C) 2003 Glauco Siliprandi This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. */ using System; using System.Collections; namespace QuantProject.Scripts.WalkForwardTesting.LinearCombination { /// <summary> /// Data to be saved/load to/from disk, resulting from the /// optimization process. /// </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; } } } |