Changeset 17309 for branches/2521_ProblemRefactoring/HeuristicLab.Optimization/3.3/BasicProblems/Interfaces
- Timestamp:
- 10/03/19 17:43:11 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring/HeuristicLab.Optimization/3.3/BasicProblems/Interfaces/IMultiObjectiveProblemDefinition.cs
r17257 r17309 28 28 public interface IMultiObjectiveProblemDefinition { 29 29 int Objectives { get; } 30 bool[]Maximization { get; }30 IReadOnlyList<bool> Maximization { get; } 31 31 IReadOnlyList<double[]> BestKnownFront { get; } 32 32 double[] ReferencePoint { get; }
Note: See TracChangeset
for help on using the changeset viewer.