Changeset 16462 for branches/2520_PersistenceReintegration/HeuristicLab.Clients.OKB/3.3/RunCreation/OKBProblem.cs
- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Clients.OKB/3.3/RunCreation/OKBProblem.cs
r16453 r16462 23 23 using HeuristicLab.Core; 24 24 using HeuristicLab.Optimization; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Fossil; 26 26 using HeuristicLab.Persistence.Default.Xml; 27 27 using System; … … 33 33 namespace HeuristicLab.Clients.OKB.RunCreation { 34 34 [Item("OKB Problem", "A base class for problems which are stored in the OKB.")] 35 [Storable Class]35 [StorableType("041DC8A8-2987-4045-B24A-CBA7EAD47316")] 36 36 public abstract class OKBProblem : Item, IHeuristicOptimizationProblem { 37 37 public virtual Type ProblemType { … … 139 139 140 140 [StorableConstructor] 141 protected OKBProblem( bool deserializing) : base(deserializing) { }141 protected OKBProblem(StorableConstructorFlag _) : base(_) { } 142 142 protected OKBProblem(OKBProblem original, Cloner cloner) 143 143 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.