Changeset 6044 for trunk/sources/HeuristicLab.Algorithms.LocalSearch
- Timestamp:
- 04/23/11 01:30:48 (14 years ago)
- Location:
- trunk/sources/HeuristicLab.Algorithms.LocalSearch/3.3
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Algorithms.LocalSearch/3.3/LocalSearchImprovementOperator.cs
r6043 r6044 28 28 using HeuristicLab.Operators; 29 29 using HeuristicLab.Optimization; 30 using HeuristicLab.Optimization.Operators; 30 31 using HeuristicLab.Parameters; 31 32 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; … … 139 140 140 141 loop = new LocalSearchMainLoop(); 142 ((ResultsCollector)((SingleSuccessorOperator)loop.OperatorGraph.InitialOperator).Successor).CollectedValues.Remove(loop.BestLocalQualityParameter.Name); 141 143 ParameterizeLSMainLoop(); 142 144 -
trunk/sources/HeuristicLab.Algorithms.LocalSearch/3.3/LocalSearchMainLoop.cs
r6043 r6044 204 204 205 205 #region Create operator graph 206 OperatorGraph.InitialOperator = subScopesProcessor0; 206 OperatorGraph.InitialOperator = subScopesProcessor0; // don't change this without adapting the constructor of LocalSearchImprovementOperator 207 207 subScopesProcessor0.Operators.Add(bestQualityInitializer); 208 208 subScopesProcessor0.Successor = resultsCollector1;
Note: See TracChangeset
for help on using the changeset viewer.