- Timestamp:
- 07/07/19 23:40:10 (4 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleCreator.cs
r15584 r17097 1 1 #region License Information 2 2 /* HeuristicLab 3 * Copyright (C) 2002-201 8Heuristic and Evolutionary Algorithms Laboratory (HEAL)3 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) 4 4 * 5 5 * This file is part of HeuristicLab. … … 24 24 using HeuristicLab.Operators; 25 25 using HeuristicLab.Parameters; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.Encodings.ScheduleEncoding { 29 29 [Item("ScheduleCreator", "Represents the generalized form of creators for Scheduling Problems.")] 30 [Storable Class]30 [StorableType("3DDA1485-4518-4F1D-A475-795FFE63C98E")] 31 31 public abstract class ScheduleCreator : InstrumentedOperator, IScheduleCreator { 32 32 … … 36 36 37 37 [StorableConstructor] 38 protected ScheduleCreator( bool deserializing) : base(deserializing) { }38 protected ScheduleCreator(StorableConstructorFlag _) : base(_) { } 39 39 protected ScheduleCreator(ScheduleCreator original, Cloner cloner) : base(original, cloner) { } 40 40 public ScheduleCreator()
Note: See TracChangeset
for help on using the changeset viewer.