Changeset 5178 for branches/ParallelEngine/HeuristicLab.Problems.DataAnalysis/3.3/SupportVectorMachine/SupportVectorMachineModelEvaluator.cs
- Timestamp:
- 12/28/10 01:44:33 (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/ParallelEngine/HeuristicLab.Problems.DataAnalysis/3.3/SupportVectorMachine/SupportVectorMachineModelEvaluator.cs
r5177 r5178 87 87 } 88 88 89 public override IOperation Apply( IExecutionContext context) {89 public override IOperation Apply() { 90 90 int start = SamplesStart.Value; 91 91 int end = SamplesEnd.Value; … … 95 95 96 96 ValuesParameter.ActualValue = new DoubleMatrix(Evaluate(SupportVectorMachineModel, DataAnalysisProblemData, rows)); 97 return base.Apply( context);97 return base.Apply(); 98 98 } 99 99
Note: See TracChangeset
for help on using the changeset viewer.