Changeset 17695 for branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.ParticleSwarmOptimization
- Timestamp:
- 07/23/20 16:21:55 (4 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.ParticleSwarmOptimization/3.3/ParticleSwarmOptimization.cs
r17226 r17695 22 22 using System; 23 23 using System.Linq; 24 using HEAL.Attic; 24 25 using HeuristicLab.Analysis; 25 26 using HeuristicLab.Common; … … 30 31 using HeuristicLab.Optimization.Operators; 31 32 using HeuristicLab.Parameters; 32 using HEAL.Attic;33 33 using HeuristicLab.PluginInfrastructure; 34 34 using HeuristicLab.Random; … … 405 405 solutionsCreator.SolutionCreatorParameter.ActualName = ParticleCreatorParameter.Name; 406 406 else 407 solutionsCreator.SolutionCreatorParameter.ActualName = Problem.SolutionCreatorParameter.Name;407 solutionsCreator.SolutionCreatorParameter.ActualName = SolutionCreatorParameter.Name; 408 408 } 409 409 }
Note: See TracChangeset
for help on using the changeset viewer.