Changeset 16752 for branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.ParameterlessPopulationPyramid/3.3
- Timestamp:
- 04/03/19 16:06:10 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Algorithms.ParameterlessPopulationPyramid/3.3/ParameterlessPopulationPyramid.cs
r16723 r16752 25 25 using System.Linq; 26 26 using System.Threading; 27 using HEAL.Attic; 27 28 using HeuristicLab.Analysis; 28 29 using HeuristicLab.Common; … … 32 33 using HeuristicLab.Optimization; 33 34 using HeuristicLab.Parameters; 34 using HEAL.Attic;35 35 using HeuristicLab.Random; 36 36 … … 46 46 get { return typeof(SingleObjectiveProblem<BinaryVectorEncoding, BinaryVector>); } 47 47 } 48 // TODO: Type of this property should be ISingleObjectiveProblemDefinition instead of the SingleObjectiveProblem 49 // However, this requires that BasicAlgorithm's Problem property is also changed 48 50 public new SingleObjectiveProblem<BinaryVectorEncoding, BinaryVector> Problem { 49 51 get { return (SingleObjectiveProblem<BinaryVectorEncoding, BinaryVector>)base.Problem; }
Note: See TracChangeset
for help on using the changeset viewer.