Changeset 17320 for branches/2521_ProblemRefactoring/HeuristicLab.Problems.TestFunctions.MultiObjective
- Timestamp:
- 10/04/19 17:31:54 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/MultiObjectiveTestFunctionProblem.cs
r17317 r17320 20 20 #endregion 21 21 using System; 22 using System.Threading; 22 23 using HEAL.Attic; 23 24 using HeuristicLab.Analysis; … … 121 122 } 122 123 123 public override double[] Evaluate(RealVector solution, IRandom random ) {124 public override double[] Evaluate(RealVector solution, IRandom random, CancellationToken cancellationToken) { 124 125 return TestFunction.Evaluate(solution, Objectives); 125 126 }
Note: See TracChangeset
for help on using the changeset viewer.