Changeset 14929 for branches/PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective
- Timestamp:
- 05/04/17 19:06:54 (8 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/Interfaces/IConstrainedTestFunction.cs
r14185 r14929 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Encodings.RealVectorEncoding; 24 using HeuristicLab.Persistence; 24 25 25 26 namespace HeuristicLab.Problems.TestFunctions.MultiObjective { … … 27 28 /// An interface which represents an evaluation operator for multi objective test functions. 28 29 /// </summary> 30 [StorableType("d09697f7-d1c7-4254-837b-973d92904204")] 29 31 public interface IConstrainedTestFunction : INamedItem { 30 32 -
branches/PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/Interfaces/IMultiObjectiveTestFunction.cs
r14185 r14929 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Encodings.RealVectorEncoding; 25 using HeuristicLab.Persistence; 25 26 26 27 namespace HeuristicLab.Problems.TestFunctions.MultiObjective { … … 28 29 /// An interface which represents an multi objective test functions. 29 30 /// </summary> 31 [StorableType("23b5e67d-d867-47f7-a64a-e0a2c40a4929")] 30 32 public interface IMultiObjectiveTestFunction : INamedItem { 31 33 bool[] Maximization(int objectives); -
branches/PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/Interfaces/IMultiObjectiveTestFunctionAnalyzer.cs
r14111 r14929 22 22 using HeuristicLab.Data; 23 23 using HeuristicLab.Optimization; 24 using HeuristicLab.Persistence; 24 25 25 26 namespace HeuristicLab.Problems.TestFunctions.MultiObjective { 26 27 28 [StorableType("04dd8c80-95d7-4813-8565-bb6bc86bd901")] 27 29 public interface IMultiObjectiveTestFunctionAnalyzer : IAnalyzer, IMultiObjectiveOperator { 28 30 IScopeTreeLookupParameter<DoubleArray> QualitiesParameter { get; } -
branches/PersistenceReintegration/HeuristicLab.Problems.TestFunctions.MultiObjective/3.3/NonDominatedSelect.cs
r14185 r14929 21 21 22 22 using System.Collections.Generic; 23 using HeuristicLab.Persistence; 23 24 24 25 namespace HeuristicLab.Problems.TestFunctions.MultiObjective { 25 26 26 27 public static class NonDominatedSelect { 28 [StorableType("4bde4249-f0af-4bd4-a33c-2b05c1abb389")] 27 29 public enum DominationResult { Dominates, IsDominated, IsNonDominated }; 28 30
Note: See TracChangeset
for help on using the changeset viewer.