[Quantproject-developers] QuantProject/b4_Business/a2_Strategies/Optimizing/Decoding BasicDecoderF
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2008-04-20 16:33:20
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a2_Strategies/Optimizing/Decoding In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv23328/b4_Business/a2_Strategies/Optimizing/Decoding Modified Files: BasicDecoderForTestingPositions.cs Log Message: The abstract method protected abstract TestingPositions getMeaningForUndecodable(); has been added Index: BasicDecoderForTestingPositions.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a2_Strategies/Optimizing/Decoding/BasicDecoderForTestingPositions.cs,v retrieving revision 1.6 retrieving revision 1.7 diff -C2 -d -r1.6 -r1.7 *** BasicDecoderForTestingPositions.cs 8 Apr 2008 21:46:01 -0000 1.6 --- BasicDecoderForTestingPositions.cs 20 Apr 2008 16:33:13 -0000 1.7 *************** *** 117,120 **** --- 117,122 ---- #endregion decodeSignedTickers + protected abstract TestingPositions getMeaningForUndecodable(); + #region isDecodable private string[] getTickersForPositions() *************** *** 203,207 **** returnsManager); this.setTickerRelatedGeneValues(); ! TestingPositions meaning = new TestingPositions(); if ( this.isDecodable() ) // encoded, normally a Genome, can be decoded to a TestingPositions --- 205,209 ---- returnsManager); this.setTickerRelatedGeneValues(); ! TestingPositions meaning = this.getMeaningForUndecodable(); if ( this.isDecodable() ) // encoded, normally a Genome, can be decoded to a TestingPositions |