- Timestamp:
- 06/21/12 18:02:33 (12 years ago)
- Location:
- branches/GP-MoveOperators
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/GP-MoveOperators
- Property svn:ignore
-
old new 20 20 bin 21 21 protoc.exe 22 _ReSharper.HeuristicLab 3.3 Tests
-
- Property svn:mergeinfo changed
- Property svn:ignore
-
branches/GP-MoveOperators/HeuristicLab.Algorithms.VariableNeighborhoodSearch/3.3/VariableNeighborhoodSearch.cs
r7518 r8085 212 212 ParameterizeStochasticOperator(Problem.SolutionCreator); 213 213 ParameterizeStochasticOperator(Problem.Evaluator); 214 foreach (IOperator op in Problem.Operators ) ParameterizeStochasticOperator(op);214 foreach (IOperator op in Problem.Operators.OfType<IOperator>()) ParameterizeStochasticOperator(op); 215 215 ParameterizeSolutionsCreator(); 216 216 ParameterizeMainLoop(); … … 237 237 UpdateShakingOperators(); 238 238 UpdateAnalyzers(); 239 foreach (IOperator op in Problem.Operators ) ParameterizeStochasticOperator(op);239 foreach (IOperator op in Problem.Operators.OfType<IOperator>()) ParameterizeStochasticOperator(op); 240 240 ParameterizeIterationBasedOperators(); 241 241 base.Problem_OperatorsChanged(sender, e);
Note: See TracChangeset
for help on using the changeset viewer.