- Timestamp:
- 01/28/19 18:24:59 (3 years ago)
- Location:
- addons/HeuristicLab.Problems.BioBoost/HeuristicLab.Problems.BioBoost/3.3/Data
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
addons/HeuristicLab.Problems.BioBoost/HeuristicLab.Problems.BioBoost/3.3/Data/Conversion.cs
r13071 r16575 28 28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 29 29 using YamlDotNet.RepresentationModel; 30 using HEAL.Attic; 30 31 31 32 namespace HeuristicLab.BioBoost.Data { 32 [Storable Class]33 [StorableType("AFFEC6E6-4373-41FD-B43E-139449409C98")] 33 34 [Item("Conversion", "Describes a conversion process including storage.")] 34 35 public class Conversion : DataItem { … … 141 142 142 143 [StorableConstructor] 143 protected Conversion( bool isDeserializing) : base(isDeserializing) { }144 protected Conversion(StorableConstructorFlag _) : base(_) { } 144 145 145 146 [StorableHook(HookType.AfterDeserialization)] -
addons/HeuristicLab.Problems.BioBoost/HeuristicLab.Problems.BioBoost/3.3/Data/CostFactors.cs
r13071 r16575 24 24 using HeuristicLab.Parameters; 25 25 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 26 using HEAL.Attic; 26 27 27 28 namespace HeuristicLab.BioBoost.Data { 28 29 29 [Storable Class]30 [StorableType("137AF95F-D154-4EF3-B522-C50BF477A926")] 30 31 [Item("CostFactors", "Splits the cost into several differen areas which can are different for different regions.")] 31 32 public class CostFactors : DataItem { … … 49 50 #region Construction & Cloning 50 51 [StorableConstructor] 51 protected CostFactors( bool isDeserializing) : base(isDeserializing) { }52 protected CostFactors(StorableConstructorFlag _) : base(_) { } 52 53 53 54 protected CostFactors(CostFactors orig, Cloner cloner) : base(orig, cloner) { } -
addons/HeuristicLab.Problems.BioBoost/HeuristicLab.Problems.BioBoost/3.3/Data/DataItem.cs
r13071 r16575 33 33 using System.Text.RegularExpressions; 34 34 using YamlDotNet.RepresentationModel; 35 using HEAL.Attic; 35 36 36 37 namespace HeuristicLab.BioBoost.Data { 37 38 38 [Storable Class]39 [StorableType("ADCB9CD6-ECBD-4202-B945-0602E538D771")] 39 40 [Item("DataItem", "Generic Item for holding various pieces of information")] 40 41 public abstract class DataItem : ParameterizedNamedItem { … … 42 43 #region Construction & Cloning 43 44 [StorableConstructor] 44 protected DataItem( bool isDeserializing) : base(isDeserializing) {}45 protected DataItem(StorableConstructorFlag _) : base(_) { } 45 46 protected DataItem(DataItem orig, Cloner cloner) : base(orig, cloner) {} 46 47 protected DataItem() {} -
addons/HeuristicLab.Problems.BioBoost/HeuristicLab.Problems.BioBoost/3.3/Data/Logistic.cs
r13071 r16575 27 27 using HeuristicLab.Parameters; 28 28 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 29 using HEAL.Attic; 29 30 30 31 namespace HeuristicLab.BioBoost.Data { 31 [Storable Class]32 [StorableType("5604E9F0-F4C5-4C07-BE46-7895ED33A63E")] 32 33 [Item("Logistic", "Describes a logistic modality for a certain product.")] 33 34 public class Logistic : DataItem { … … 73 74 74 75 [StorableConstructor] 75 protected Logistic( bool isDeserializing) : base(isDeserializing) { }76 protected Logistic(StorableConstructorFlag _) : base(_) { } 76 77 77 78 [StorableHook(HookType.AfterDeserialization)] -
addons/HeuristicLab.Problems.BioBoost/HeuristicLab.Problems.BioBoost/3.3/Data/LogisticAction.cs
r13071 r16575 25 25 using HeuristicLab.Parameters; 26 26 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 27 using HEAL.Attic; 27 28 28 29 namespace HeuristicLab.BioBoost.Data { 29 [Storable Class]30 [StorableType("413F5F16-3342-46CF-93AF-38FDD4F40E92")] 30 31 [Item("LogisticAction", "Summarizes cost factors and emissions for a logistic action.")] 31 32 public class LogisticAction : DataItem { … … 64 65 65 66 [StorableConstructor] 66 protected LogisticAction( bool isDeserializing) : base(isDeserializing) { }67 protected LogisticAction(StorableConstructorFlag _) : base(_) { } 67 68 68 69 protected LogisticAction(LogisticAction orig, Cloner cloner) : base(orig, cloner) { } -
addons/HeuristicLab.Problems.BioBoost/HeuristicLab.Problems.BioBoost/3.3/Data/Product.cs
r13071 r16575 26 26 using HeuristicLab.Parameters; 27 27 using HeuristicLab.Persistence.Default.CompositeSerializers.Storable; 28 using HEAL.Attic; 28 29 29 30 namespace HeuristicLab.BioBoost.Data { 30 [Storable Class]31 [StorableType("EF528EDA-45D6-4DAB-862A-C05BCD4147CC")] 31 32 [Item("Product", "Summarizes product information.")] 32 33 public class Product : DataItem { … … 71 72 72 73 [StorableConstructor] 73 protected Product( bool isDeserializing) : base(isDeserializing) { }74 protected Product(StorableConstructorFlag _) : base(_) { } 74 75 75 76 [StorableHook(HookType.AfterDeserialization)]
Note: See TracChangeset
for help on using the changeset viewer.