- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Problems.Scheduling/3.3/Analyzers/SchedulingAnalyzer.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. … … 27 27 using HeuristicLab.Optimization; 28 28 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Attic; 30 30 31 31 namespace HeuristicLab.Problems.Scheduling { 32 32 [Item("SchedulingAnalyzer", "Represents the generalized form of Analyzers for Scheduling Problems.")] 33 [Storable Class]33 [StorableType("59C3972B-1051-4CEE-A41C-B7AE0D05A3AC")] 34 34 public abstract class SchedulingAnalyzer : SingleSuccessorOperator, IAnalyzer, ISingleObjectiveOperator { 35 35 public virtual bool EnabledByDefault { … … 38 38 39 39 [StorableConstructor] 40 protected SchedulingAnalyzer( bool deserializing) : base(deserializing) { }40 protected SchedulingAnalyzer(StorableConstructorFlag _) : base(_) { } 41 41 protected SchedulingAnalyzer(SchedulingAnalyzer original, Cloner cloner) 42 42 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.