- Timestamp:
- 04/30/13 10:54:12 (12 years ago)
- Location:
- branches/FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/TestFunctions
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/TestFunctions/CustomAdditiveMoveEvaluator.cs
r9346 r9407 56 56 var eval = EvaluatorParameter.ActualValue as CustomEvaluator; 57 57 if (eval != null) 58 return eval.Evaluate Function(vector);58 return eval.Evaluate(vector); 59 59 throw new InvalidOperationException("evaluator is not a custom evaluator"); 60 60 } -
branches/FitnessLandscapeAnalysis/HeuristicLab.Analysis.FitnessLandscape/TestFunctions/CustomEvaluator.cs
r9346 r9407 64 64 } 65 65 66 public override double Evaluate Function(RealVector point) {66 public override double Evaluate(RealVector point) { 67 67 if (point[0] < 0 || point[1] < 0) 68 68 return 0;
Note: See TracChangeset
for help on using the changeset viewer.