- Timestamp:
- 05/04/17 17:19:35 (7 years ago)
- Location:
- branches/PersistenceReintegration/HeuristicLab.Problems.Programmable/3.3
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceReintegration/HeuristicLab.Problems.Programmable/3.3/MultiObjectiveProblemDefinitionScript.cs
r14185 r14927 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Optimization; 25 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;25 using HeuristicLab.Persistence; 26 26 27 27 namespace HeuristicLab.Problems.Programmable { 28 28 [Item("Multi-objective Problem Definition Script", "Script that defines the parameter vector and evaluates the solution for a programmable problem.")] 29 [Storable Class]29 [StorableType("2d7f81ef-32bd-4db1-a17d-e97e1e908b4b")] 30 30 public sealed class MultiObjectiveProblemDefinitionScript : ProblemDefinitionScript, IMultiObjectiveProblemDefinition, IStorableContent { 31 31 public string Filename { get; set; } -
branches/PersistenceReintegration/HeuristicLab.Problems.Programmable/3.3/MultiObjectiveProgrammableProblem.cs
r14185 r14927 27 27 using HeuristicLab.Optimization; 28 28 using HeuristicLab.Parameters; 29 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;29 using HeuristicLab.Persistence; 30 30 31 31 namespace HeuristicLab.Problems.Programmable { 32 32 [Item("Programmable Problem (multi-objective)", "Represents a multi-objective problem that can be programmed with a script.")] 33 33 [Creatable(CreatableAttribute.Categories.Problems, Priority = 120)] 34 [Storable Class]34 [StorableType("916c5220-35ef-4e40-9731-7e30ed94ba5c")] 35 35 public sealed class MultiObjectiveProgrammableProblem : MultiObjectiveBasicProblem<IEncoding>, IProgrammableItem { 36 36 public static new Image StaticItemImage { -
branches/PersistenceReintegration/HeuristicLab.Problems.Programmable/3.3/ProblemDefinitionScript.cs
r14185 r14927 26 26 using HeuristicLab.Core; 27 27 using HeuristicLab.Optimization; 28 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;28 using HeuristicLab.Persistence; 29 29 using HeuristicLab.Scripting; 30 30 31 31 namespace HeuristicLab.Problems.Programmable { 32 32 [Item("ProblemDefinitionScript", "Script that defines the parameter vector and evaluates the solution for a programmable problem.")] 33 [Storable Class]33 [StorableType("8b8547b0-7dca-49f5-a722-37aa59a6d702")] 34 34 public abstract class ProblemDefinitionScript : Script, IProblemDefinition { 35 35 protected bool SuppressEvents { get; set; } -
branches/PersistenceReintegration/HeuristicLab.Problems.Programmable/3.3/SingleObjectiveProblemDefinitionScript.cs
r14185 r14927 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Optimization; 26 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;26 using HeuristicLab.Persistence; 27 27 28 28 namespace HeuristicLab.Problems.Programmable { 29 29 [Item("Single-objective Problem Definition Script", "Script that defines the parameter vector and evaluates the solution for a programmable problem.")] 30 [Storable Class]30 [StorableType("94e5d8d0-5070-49b1-8083-404a9ec97924")] 31 31 public sealed class SingleObjectiveProblemDefinitionScript : ProblemDefinitionScript, ISingleObjectiveProblemDefinition, IStorableContent { 32 32 public string Filename { get; set; } -
branches/PersistenceReintegration/HeuristicLab.Problems.Programmable/3.3/SingleObjectiveProgrammableProblem.cs
r14185 r14927 29 29 using HeuristicLab.Optimization; 30 30 using HeuristicLab.Parameters; 31 using HeuristicLab.Persistence .Default.CompositeSerializers.Storable;31 using HeuristicLab.Persistence; 32 32 33 33 namespace HeuristicLab.Problems.Programmable { 34 34 [Item("Programmable Problem (single-objective)", "Represents a single-objective problem that can be programmed with a script.")] 35 35 [Creatable(CreatableAttribute.Categories.Problems, Priority = 100)] 36 [Storable Class]36 [StorableType("6e40c439-dabe-4533-bd83-a1f2b156dec0")] 37 37 public sealed class SingleObjectiveProgrammableProblem : SingleObjectiveBasicProblem<IEncoding>, IProgrammableItem { 38 38 public static new Image StaticItemImage {
Note: See TracChangeset
for help on using the changeset viewer.