[Quantproject-developers] QuantProject/b7_Scripts/WalkForwardTesting/WalkForwardMultiOneRank/ReportD
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2005-11-27 00:12:48
|
Update of /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/WalkForwardMultiOneRank/ReportDebugger In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv29655/b7_Scripts/WalkForwardTesting/WalkForwardMultiOneRank/ReportDebugger Modified Files: WFMultiOneRankReportDebugger.cs Log Message: Bug fixed: casting is used to get the proper comparison behavior. Index: WFMultiOneRankReportDebugger.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b7_Scripts/WalkForwardTesting/WalkForwardMultiOneRank/ReportDebugger/WFMultiOneRankReportDebugger.cs,v retrieving revision 1.1 retrieving revision 1.2 diff -C2 -d -r1.1 -r1.2 *** WFMultiOneRankReportDebugger.cs 24 Nov 2005 17:24:57 -0000 1.1 --- WFMultiOneRankReportDebugger.cs 27 Nov 2005 00:12:40 -0000 1.2 *************** *** 108,113 **** dataTable , rowNumber ); int currentRowIndex = firstRowNumberForTheGroup; ! while ( dataTable.Rows[ currentRowIndex ][ "DateTime" ] ! == dataTable.Rows[ rowNumber ][ "DateTime" ] ) { // the current row is still in the group --- 108,113 ---- dataTable , rowNumber ); int currentRowIndex = firstRowNumberForTheGroup; ! while ( (DateTime)dataTable.Rows[ currentRowIndex ][ "DateTime" ] ! == (DateTime)dataTable.Rows[ rowNumber ][ "DateTime" ] ) { // the current row is still in the group |