[Quantproject-developers] QuantProject/b4_Business/a2_Strategies/OutOfSample TestingPositionsForUn
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2010-03-28 13:18:47
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a2_Strategies/OutOfSample In directory sfp-cvsdas-2.v30.ch3.sourceforge.com:/tmp/cvs-serv4457/a2_Strategies/OutOfSample Added Files: TestingPositionsForUndecodableEncoded.cs Log Message: Object used to assign a dummy meaning to those objects (genomes or bruteForceOptimizableParameters) that cannot be decoded to a meaningful TestingPositions. It will be returned by an IDecoder when the Decode method fails --- NEW FILE: TestingPositionsForUndecodableEncoded.cs --- /* * Created by SharpDevelop. * User: Glauco * Date: 15/03/2010 * Time: 16.46 * * To change this template use Tools | Options | Coding | Edit Standard Headers. */ using System; namespace QuantProject.Business.Strategies.OutOfSample { /// <summary> /// Object used to assign a dummy meaning to those objects (genomes or /// bruteForceOptimizableParameters) that /// cannot be decoded to a meaningful TestingPositions. It will be returned /// by an IDecoder when the Decode method fails /// </summary> [Serializable] public class TestingPositionsForUndecodableEncoded : TestingPositions , IGeneticallyOptimizable { private int generation; public int Generation { get { return this.generation; } set { this.generation = value; } } public TestingPositionsForUndecodableEncoded() { } } } |