[Quantproject-developers] QuantProject/b7_Scripts/WalkForwardTesting/WalkForwardLag/WFLagGenomesDeb
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2007-10-28 19:35:13
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/WalkForwardLag/WFLagGenomesDebugger In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv30389/b7_Scripts/WalkForwardTesting/WalkForwardLag/WFLagGenomesDebugger Modified Files: WFLagRunGenomesDebugger.cs Log Message: The code has been changed in order to use the new constructor for WFLagChosenPositionsDebugInfo Index: WFLagRunGenomesDebugger.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/WalkForwardLag/WFLagGenomesDebugger/WFLagRunGenomesDebugger.cs,v retrieving revision 1.4 retrieving revision 1.5 diff -C2 -d -r1.4 -r1.5 *** WFLagRunGenomesDebugger.cs 22 Jul 2006 20:29:01 -0000 1.4 --- WFLagRunGenomesDebugger.cs 28 Oct 2007 19:35:09 -0000 1.5 *************** *** 58,66 **** } private void computeList_setChosenPositionsDebugInfoList_addDebugInfo( ! WFLagChosenPositions wFLagChosenPositions ) { WFLagChosenPositionsDebugInfo wFLagChosenPositionsDebugInfo = ! new WFLagChosenPositionsDebugInfo( wFLagChosenPositions , ! this.wFLagLog ); this.chosenPositionsDebugInfoList.Add( wFLagChosenPositionsDebugInfo ); } --- 58,69 ---- } private void computeList_setChosenPositionsDebugInfoList_addDebugInfo( ! WFLagLogItem wFLagLogItem ) { WFLagChosenPositionsDebugInfo wFLagChosenPositionsDebugInfo = ! new WFLagChosenPositionsDebugInfo( ! wFLagLogItem.WFLagWeightedPositions , ! wFLagLogItem.LastOptimizationDate , ! wFLagLogItem.Generation , ! this.wFLagLog ); this.chosenPositionsDebugInfoList.Add( wFLagChosenPositionsDebugInfo ); } *************** *** 69,76 **** { this.chosenPositionsDebugInfoList = new ArrayList(); ! foreach ( WFLagChosenPositions wFLagChosenPositions in this.chosenPositionsCollection ) this.computeList_setChosenPositionsDebugInfoList_addDebugInfo( ! wFLagChosenPositions ); } private void computeList() --- 72,79 ---- { this.chosenPositionsDebugInfoList = new ArrayList(); ! foreach ( WFLagLogItem wFLagLogItem in this.chosenPositionsCollection ) this.computeList_setChosenPositionsDebugInfoList_addDebugInfo( ! wFLagLogItem ); } private void computeList() |