Changeset 10538 for branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Trading/3.4/Symbolic/SingleObjective
- Timestamp:
- 03/05/14 14:48:13 (11 years ago)
- Location:
- branches/DataPreprocessing
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/DataPreprocessing
- Property svn:mergeinfo changed
-
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Trading/3.4/Symbolic/SingleObjective/ProfitEvaluator.cs
r9989 r10538 47 47 public override bool Maximization { get { return true; } } 48 48 49 public override IOperation Apply() {49 public override IOperation InstrumentedApply() { 50 50 var solution = SymbolicExpressionTreeParameter.ActualValue; 51 51 IEnumerable<int> rows = GenerateRowsToEvaluate(); … … 54 54 QualityParameter.ActualValue = new DoubleValue(quality); 55 55 56 return base. Apply();56 return base.InstrumentedApply(); 57 57 } 58 58 -
branches/DataPreprocessing/HeuristicLab.Problems.DataAnalysis.Trading/3.4/Symbolic/SingleObjective/SharpeRatioEvaluator.cs
r9989 r10538 47 47 public override bool Maximization { get { return true; } } 48 48 49 public override IOperation Apply() {49 public override IOperation InstrumentedApply() { 50 50 var solution = SymbolicExpressionTreeParameter.ActualValue; 51 51 IEnumerable<int> rows = GenerateRowsToEvaluate(); … … 54 54 QualityParameter.ActualValue = new DoubleValue(quality); 55 55 56 return base. Apply();56 return base.InstrumentedApply(); 57 57 } 58 58
Note: See TracChangeset
for help on using the changeset viewer.