[Quantproject-developers] QuantProject/b4_Business/a2_Strategies/InSample BruteForceChooser.cs, 1.
Brought to you by:
glauco_1
|
From: Glauco S. <gla...@us...> - 2008-04-01 21:28:22
|
Update of /cvsroot/quantproject/QuantProject/b4_Business/a2_Strategies/InSample In directory sc8-pr-cvs16.sourceforge.net:/tmp/cvs-serv14318/b4_Business/a2_Strategies/InSample Modified Files: BruteForceChooser.cs Log Message: the parameter historicalQuoteProvider has been removed, it was not used at all Index: BruteForceChooser.cs =================================================================== RCS file: /cvsroot/quantproject/QuantProject/b4_Business/a2_Strategies/InSample/BruteForceChooser.cs,v retrieving revision 1.2 retrieving revision 1.3 diff -C2 -d -r1.2 -r1.3 *** BruteForceChooser.cs 30 Mar 2008 15:38:50 -0000 1.2 --- BruteForceChooser.cs 1 Apr 2008 21:28:18 -0000 1.3 *************** *** 49,53 **** protected IDecoderForTestingPositions decoderForTestingPositions; protected IFitnessEvaluator fitnessEvaluator; ! protected IHistoricalQuoteProvider historicalQuoteProvider; public string Description --- 49,53 ---- protected IDecoderForTestingPositions decoderForTestingPositions; protected IFitnessEvaluator fitnessEvaluator; ! // protected IHistoricalQuoteProvider historicalQuoteProvider; public string Description *************** *** 65,70 **** int numberOfBestTestingPositionsToBeReturned , IDecoderForTestingPositions decoderForTestingPositions , ! IFitnessEvaluator fitnessEvaluator , ! IHistoricalQuoteProvider historicalQuoteProvider ) { this.numberOfBestTestingPositionsToBeReturned = --- 65,69 ---- int numberOfBestTestingPositionsToBeReturned , IDecoderForTestingPositions decoderForTestingPositions , ! IFitnessEvaluator fitnessEvaluator ) { this.numberOfBestTestingPositionsToBeReturned = *************** *** 72,76 **** this.decoderForTestingPositions = decoderForTestingPositions; this.fitnessEvaluator = fitnessEvaluator; ! this.historicalQuoteProvider = historicalQuoteProvider; } --- 71,75 ---- this.decoderForTestingPositions = decoderForTestingPositions; this.fitnessEvaluator = fitnessEvaluator; ! // this.historicalQuoteProvider = historicalQuoteProvider; } |