- Timestamp:
- 12/03/12 13:04:55 (12 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.TestFunctions/3.3/Improvers/SingleObjectiveTestFunctionImprovementOperator.cs
r8327 r8987 126 126 throw new ArgumentException("Cannot improve solution because it has the wrong type."); 127 127 128 MethodInfo evaluationMethod = Evaluator.GetType().GetMethod(" Apply",129 BindingFlags. Public | BindingFlags.Static,128 MethodInfo evaluationMethod = Evaluator.GetType().GetMethod("EvaluateFunction", 129 BindingFlags.Instance | BindingFlags.NonPublic, 130 130 null, 131 new Type[] { typeof(RealVector) }, null); 131 new[] { typeof(RealVector) }, 132 null); 132 133 Func<RealVector, double> functionEvaluator = x => (double)evaluationMethod.Invoke(Evaluator, new object[] { x }); 133 134 double bestSolQuality = functionEvaluator(bestSol);
Note: See TracChangeset
for help on using the changeset viewer.