Changeset 16812
- Timestamp:
- 04/18/19 12:04:10 (6 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
r16801 r16812 15 15 16 16 namespace HeuristicLab.Problems.Programmable { 17 public class Compiled SingleObjectiveProblemDefinition : CompiledMultiObjectiveProblemDefinition<CombinedEncoding, CombinedSolution> {17 public class CompiledMultiObjectiveProblemDefinition : CompiledMultiObjectiveProblemDefinition<CombinedEncoding, CombinedSolution> { 18 18 public override bool[] Maximization { get { return new[] { true, false }; } } 19 19 -
branches/2521_ProblemRefactoring/HeuristicLab.Problems.Programmable/3.3/Templates/MultiObjectiveProblem_Template.cs
r13373 r16812 10 10 11 11 namespace HeuristicLab.Problems.Programmable { 12 public class Compiled SingleObjectiveProblemDefinition : CompiledMultiObjectiveProblemDefinition<ENCODING_CLASS, SOLUTION_CLASS> {12 public class CompiledMultiObjectiveProblemDefinition : CompiledMultiObjectiveProblemDefinition<ENCODING_CLASS, SOLUTION_CLASS> { 13 13 public override bool[] Maximization { get { return new[] { false, false }; } } 14 14
Note: See TracChangeset
for help on using the changeset viewer.