Changeset 17225 for branches/2521_ProblemRefactoring/HeuristicLab.Problems.Programmable/3.3/Templates
- Timestamp:
- 08/29/19 13:53:26 (5 years ago)
- Location:
- branches/2521_ProblemRefactoring/HeuristicLab.Problems.Programmable/3.3/Templates
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Problems.Programmable/3.3/Templates/MultiObjectiveCombinedEncodingProblem_Template.cs
r16812 r17225 17 17 public class CompiledMultiObjectiveProblemDefinition : CompiledMultiObjectiveProblemDefinition<CombinedEncoding, CombinedSolution> { 18 18 public override bool[] Maximization { get { return new[] { true, false }; } } 19 public override double[] ReferencePoint { get { return null; } } 20 public override IReadOnlyList<double[]> BestKnownFront { get { return null; } } 19 21 20 22 public override void Initialize() { -
branches/2521_ProblemRefactoring/HeuristicLab.Problems.Programmable/3.3/Templates/MultiObjectiveProblem_Template.cs
r16812 r17225 12 12 public class CompiledMultiObjectiveProblemDefinition : CompiledMultiObjectiveProblemDefinition<ENCODING_CLASS, SOLUTION_CLASS> { 13 13 public override bool[] Maximization { get { return new[] { false, false }; } } 14 public override double[] ReferencePoint { get { return null; } } 15 public override IReadOnlyList<double[]> BestKnownFront { get { return null; } } 14 16 15 17 public override void Initialize() {
Note: See TracChangeset
for help on using the changeset viewer.