Changeset 3520 for trunk/sources/HeuristicLab.Problems.TestFunctions/3.3
- Timestamp:
- 04/24/10 15:22:22 (15 years ago)
- Location:
- trunk/sources/HeuristicLab.Problems.TestFunctions/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.TestFunctions/3.3/Evaluators/SingleObjectiveTestFunctionProblemEvaluator.cs
r3376 r3520 35 35 [StorableClass] 36 36 public abstract class SingleObjectiveTestFunctionProblemEvaluator : SingleSuccessorOperator, ISingleObjectiveTestFunctionProblemEvaluator { 37 /// <summary> 38 /// These operators should not change their name through the GUI 39 /// </summary> 40 public override bool CanChangeName { 41 get { return false; } 42 } 37 43 /// <summary> 38 44 /// Returns whether the actual function constitutes a maximization or minimization problem. -
trunk/sources/HeuristicLab.Problems.TestFunctions/3.3/MoveEvaluators/AdditiveMoveEvaluator.cs
r3376 r3520 34 34 [StorableClass] 35 35 public abstract class AdditiveMoveEvaluator : SingleSuccessorOperator, ISingleObjectiveTestFunctionAdditiveMoveEvaluator { 36 36 37 public abstract Type EvaluatorType { get; } 38 public override bool CanChangeName { 39 get { return false; } 40 } 41 37 42 public ILookupParameter<DoubleValue> QualityParameter { 38 43 get { return (ILookupParameter<DoubleValue>)Parameters["Quality"]; }
Note: See TracChangeset
for help on using the changeset viewer.