Changeset 3209 for trunk/sources/HeuristicLab.Problems.TestFunctions
- Timestamp:
- 03/24/10 21:15:04 (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Problems.TestFunctions/3.3/SingleObjectiveTestFunctionProblem.cs
r3187 r3209 252 252 private void InitializeOperators() { 253 253 operators = new List<IOperator>(); 254 if (ApplicationManager.Manager != null) { 255 foreach (IRealVectorOperator op in ApplicationManager.Manager.GetInstances<IRealVectorOperator>()) 256 operators.Add(op); 257 UpdateMoveEvaluators(); 258 ParameterizeOperators(); 259 } 254 if (ApplicationManager.Manager != null) operators.AddRange(ApplicationManager.Manager.GetInstances<IRealVectorOperator>().Cast<IOperator>()); 255 UpdateMoveEvaluators(); 256 ParameterizeOperators(); 260 257 InitializeMoveGenerators(); 261 258 }
Note: See TracChangeset
for help on using the changeset viewer.