Changeset 12504 for trunk/sources/HeuristicLab.Clients.OKB/3.3/RunCreation
- Timestamp:
- 06/25/15 10:30:06 (9 years ago)
- Location:
- trunk/sources/HeuristicLab.Clients.OKB/3.3/RunCreation
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/sources/HeuristicLab.Clients.OKB/3.3/RunCreation/MultiObjectiveOKBProblem.cs
r12012 r12504 27 27 28 28 namespace HeuristicLab.Clients.OKB.RunCreation { 29 [Item(" Multi-Objective OKB Problem", "Represents a multi-objective problem which is stored in the OKB.")]30 [Creatable( "Optimization Knowledge Base (OKB)")]29 [Item("OKB Problem (multi-objective)", "Represents a multi-objective problem which is stored in the OKB.")] 30 [Creatable(CreatableAttribute.Categories.TestingAndAnalysisOKB, Priority = 120)] 31 31 [StorableClass] 32 32 public sealed class MultiObjectiveOKBProblem : OKBProblem, IMultiObjectiveHeuristicOptimizationProblem, IStorableContent { -
trunk/sources/HeuristicLab.Clients.OKB/3.3/RunCreation/OKBAlgorithm.cs
r12012 r12504 35 35 namespace HeuristicLab.Clients.OKB.RunCreation { 36 36 [Item("OKB Algorithm", "An algorithm which is stored in the OKB.")] 37 [Creatable( "Optimization Knowledge Base (OKB)")]37 [Creatable(CreatableAttribute.Categories.TestingAndAnalysisOKB, Priority = 100)] 38 38 [StorableClass] 39 39 public sealed class OKBAlgorithm : Item, IAlgorithm, IStorableContent { -
trunk/sources/HeuristicLab.Clients.OKB/3.3/RunCreation/SingleObjectiveOKBProblem.cs
r12012 r12504 27 27 28 28 namespace HeuristicLab.Clients.OKB.RunCreation { 29 [Item(" Single-Objective OKB Problem", "Represents a single-objective problem which is stored in the OKB.")]30 [Creatable( "Optimization Knowledge Base (OKB)")]29 [Item("OKB Problem (single-objective)", "Represents a single-objective problem which is stored in the OKB.")] 30 [Creatable(CreatableAttribute.Categories.TestingAndAnalysisOKB, Priority = 110)] 31 31 [StorableClass] 32 32 public sealed class SingleObjectiveOKBProblem : OKBProblem, ISingleObjectiveHeuristicOptimizationProblem, IStorableContent {
Note: See TracChangeset
for help on using the changeset viewer.