Changeset 17315 for branches/2521_ProblemRefactoring/HeuristicLab.Problems.Programmable/3.3/Templates
- Timestamp:
- 10/04/19 14:23:08 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Problems.Programmable/3.3/Templates/MultiObjectiveCombinedEncodingProblem_Template.cs
r17309 r17315 16 16 namespace HeuristicLab.Problems.Programmable { 17 17 public class CompiledMultiObjectiveProblemDefinition : CompiledMultiObjectiveProblemDefinition<CombinedEncoding, CombinedSolution> { 18 public override IReadOnlyList<bool>Maximization { get { return new[] { true, false }; } }18 public override bool[] Maximization { get { return new[] { true, false }; } } 19 19 public override double[] ReferencePoint { get { return null; } } 20 20 public override IReadOnlyList<double[]> BestKnownFront { get { return null; } }
Note: See TracChangeset
for help on using the changeset viewer.