- Timestamp:
- 12/28/18 16:10:48 (6 years ago)
- Location:
- branches/2520_PersistenceReintegration/HeuristicLab.Problems.Scheduling/3.3
- Files:
-
- 15 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Problems.Scheduling/3.3/Analyzers/BestSchedulingSolutionAnalyzer.cs
r16453 r16462 27 27 using HeuristicLab.Optimization; 28 28 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Fossil; 30 30 31 31 namespace HeuristicLab.Problems.Scheduling { 32 32 33 33 [Item("BestSchedulingSolutionAnalyzer", "An operator for analyzing the best solution of Scheduling Problems given in schedule-representation.")] 34 [Storable Class]34 [StorableType("FD6D4A80-1965-48FD-8D4C-E780BC2F8048")] 35 35 public sealed class BestSchedulingSolutionAnalyzer : SchedulingAnalyzer, IStochasticOperator { 36 36 [StorableConstructor] 37 private BestSchedulingSolutionAnalyzer( bool deserializing) : base(deserializing) { }37 private BestSchedulingSolutionAnalyzer(StorableConstructorFlag _) : base(_) { } 38 38 private BestSchedulingSolutionAnalyzer(BestSchedulingSolutionAnalyzer original, Cloner cloner) 39 39 : base(original, cloner) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.Scheduling/3.3/Analyzers/SchedulingAnalyzer.cs
r16453 r16462 27 27 using HeuristicLab.Optimization; 28 28 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Fossil; 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) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.Scheduling/3.3/Decoders/JSMDecoder.cs
r16453 r16462 30 30 using HeuristicLab.Optimization; 31 31 using HeuristicLab.Parameters; 32 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;32 using HEAL.Fossil; 33 33 34 34 namespace HeuristicLab.Problems.Scheduling { 35 35 [Item("JobSequenceMatrixDecoder", "Applies the GifflerThompson algorithm to create an active schedule from a JobSequence Matrix.")] 36 [Storable Class]36 [StorableType("BEB71861-F5DE-4A00-87A8-97716C13895B")] 37 37 public class JSMDecoder : ScheduleDecoder, IStochasticOperator, IJSSPOperator { 38 38 … … 59 59 60 60 [StorableConstructor] 61 protected JSMDecoder( bool deserializing) : base(deserializing) { }61 protected JSMDecoder(StorableConstructorFlag _) : base(_) { } 62 62 protected JSMDecoder(JSMDecoder original, Cloner cloner) : base(original, cloner) { } 63 63 public override IDeepCloneable Clone(Cloner cloner) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.Scheduling/3.3/Decoders/JSMDecodingErrorPolicy.cs
r16453 r16462 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Data; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Fossil; 27 27 28 28 namespace HeuristicLab.Problems.Scheduling { 29 29 [Item("JSMDecodingErrorPolicy", "Represents a policy for handling decoding errors.")] 30 [Storable Class]30 [StorableType("835B8FE8-8BEA-4E05-BB68-2538341AC2D0")] 31 31 public sealed class JSMDecodingErrorPolicy : ValueTypeValue<JSMDecodingErrorPolicyTypes> { 32 32 … … 36 36 37 37 [StorableConstructor] 38 private JSMDecodingErrorPolicy( bool deserializing) : base(deserializing) { }38 private JSMDecodingErrorPolicy(StorableConstructorFlag _) : base(_) { } 39 39 private JSMDecodingErrorPolicy(JSMDecodingErrorPolicy original, Cloner cloner) : base(original, cloner) { } 40 40 public JSMDecodingErrorPolicy() : base() { } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.Scheduling/3.3/Decoders/JSMForcingStrategy.cs
r16453 r16462 24 24 using HeuristicLab.Core; 25 25 using HeuristicLab.Data; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Fossil; 27 27 28 28 namespace HeuristicLab.Problems.Scheduling { 29 29 [Item("JSMForcingStrategy", "Represents a forcing strategy.")] 30 [Storable Class]30 [StorableType("B5170DC3-AEDD-46D2-9173-E37E0EEFD456")] 31 31 public sealed class JSMForcingStrategy : ValueTypeValue<JSMForcingStrategyTypes> { 32 32 … … 36 36 37 37 [StorableConstructor] 38 private JSMForcingStrategy( bool deserializing) : base(deserializing) { }38 private JSMForcingStrategy(StorableConstructorFlag _) : base(_) { } 39 39 private JSMForcingStrategy(JSMForcingStrategy original, Cloner cloner) : base(original, cloner) { } 40 40 public JSMForcingStrategy() { } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.Scheduling/3.3/Decoders/PRVDecoder.cs
r16453 r16462 27 27 using HeuristicLab.Optimization; 28 28 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Fossil; 30 30 31 31 namespace HeuristicLab.Problems.Scheduling { 32 32 [Item("JobSequencingMatrixDecoder", "Applies the GifflerThompson algorithm to create an active schedule from a JobSequencing Matrix.")] 33 [Storable Class]33 [StorableType("4BECE53D-C72B-4F96-AE96-EA01E7DE4B92")] 34 34 public class PRVDecoder : ScheduleDecoder, IStochasticOperator, IJSSPOperator { 35 35 … … 169 169 170 170 [StorableConstructor] 171 protected PRVDecoder( bool deserializing) : base(deserializing) { }171 protected PRVDecoder(StorableConstructorFlag _) : base(_) { } 172 172 protected PRVDecoder(PRVDecoder original, Cloner cloner) : base(original, cloner) { } 173 173 public PRVDecoder() -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.Scheduling/3.3/Decoders/PWRDecoder.cs
r16453 r16462 27 27 using HeuristicLab.Optimization; 28 28 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;29 using HEAL.Fossil; 30 30 31 31 namespace HeuristicLab.Problems.Scheduling { 32 32 [Item("PWRDecoder", "An item used to convert a PWR-individual into a generalized schedule.")] 33 [Storable Class]33 [StorableType("FE66781A-93CB-4312-8AC0-AA049220FEB8")] 34 34 public class PWRDecoder : ScheduleDecoder, IStochasticOperator, IJSSPOperator { 35 35 … … 42 42 43 43 [StorableConstructor] 44 protected PWRDecoder( bool deserializing) : base(deserializing) { }44 protected PWRDecoder(StorableConstructorFlag _) : base(_) { } 45 45 protected PWRDecoder(PWRDecoder original, Cloner cloner) : base(original, cloner) { } 46 46 public PWRDecoder() -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.Scheduling/3.3/Decoders/ScheduleDecoder.cs
r16453 r16462 25 25 using HeuristicLab.Operators; 26 26 using HeuristicLab.Parameters; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;27 using HEAL.Fossil; 28 28 29 29 namespace HeuristicLab.Problems.Scheduling { 30 30 [Item("ScheduleDecoder", "A schedule decoder translates a respresentation into an actual schedule.")] 31 [Storable Class]31 [StorableType("B48CB500-3983-4D83-98A8-3BC8FB167211")] 32 32 public abstract class ScheduleDecoder : SingleSuccessorOperator, IScheduleDecoder { 33 33 … … 40 40 41 41 [StorableConstructor] 42 protected ScheduleDecoder( bool deserializing) : base(deserializing) { }42 protected ScheduleDecoder(StorableConstructorFlag _) : base(_) { } 43 43 protected ScheduleDecoder(ScheduleDecoder original, Cloner cloner) : base(original, cloner) { } 44 44 public ScheduleDecoder() -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.Scheduling/3.3/Evaluators/MakespanEvaluator.cs
r16453 r16462 23 23 using HeuristicLab.Common; 24 24 using HeuristicLab.Core; 25 using HeuristicLab.Data;26 25 using HeuristicLab.Encodings.ScheduleEncoding; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Fossil; 28 27 29 28 namespace HeuristicLab.Problems.Scheduling { 30 29 [Item("Makespan Evaluator", "Represents an evaluator using the maximum makespan of a schedule.")] 31 [Storable Class]30 [StorableType("DCD90872-1FF9-482F-8FCF-AD34AC6DF051")] 32 31 public class MakespanEvaluator : ScheduleEvaluator { 33 32 34 33 [StorableConstructor] 35 protected MakespanEvaluator( bool deserializing) : base(deserializing) { }34 protected MakespanEvaluator(StorableConstructorFlag _) : base(_) { } 36 35 protected MakespanEvaluator(MakespanEvaluator original, Cloner cloner) : base(original, cloner) {} 37 36 public MakespanEvaluator() -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.Scheduling/3.3/Evaluators/MeanTardinessEvaluator.cs
r16453 r16462 24 24 using HeuristicLab.Common; 25 25 using HeuristicLab.Core; 26 using HeuristicLab.Data;27 26 using HeuristicLab.Encodings.ScheduleEncoding; 28 27 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Fossil; 30 29 31 30 namespace HeuristicLab.Problems.Scheduling { 32 31 [Item("Mean tardiness Evaluator", "Represents an evaluator using the mean tardiness of a schedule.")] 33 [Storable Class]32 [StorableType("75C00D86-4C81-43EC-A2D4-60736509C97E")] 34 33 public class MeanTardinessEvaluator : ScheduleEvaluator, IJSSPOperator { 35 34 36 35 [StorableConstructor] 37 protected MeanTardinessEvaluator( bool deserializing) : base(deserializing) { }36 protected MeanTardinessEvaluator(StorableConstructorFlag _) : base(_) { } 38 37 protected MeanTardinessEvaluator(MeanTardinessEvaluator original, Cloner cloner) : base(original, cloner) { } 39 38 public override IDeepCloneable Clone(Cloner cloner) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.Scheduling/3.3/Evaluators/ScheduleEvaluator.cs
r16453 r16462 25 25 using HeuristicLab.Encodings.ScheduleEncoding; 26 26 using HeuristicLab.Operators; 27 using HeuristicLab.Optimization;28 27 using HeuristicLab.Parameters; 29 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Fossil; 30 29 31 30 namespace HeuristicLab.Problems.Scheduling { 32 31 [Item("Schedule Evaluator", "Represents a base class for schedule evaluators.")] 33 [Storable Class]32 [StorableType("F006A09C-C92E-4523-84B0-CF763A652C56")] 34 33 public abstract class ScheduleEvaluator : InstrumentedOperator, IScheduleEvaluator { 35 34 … … 42 41 43 42 [StorableConstructor] 44 protected ScheduleEvaluator( bool deserializing) : base(deserializing) { }43 protected ScheduleEvaluator(StorableConstructorFlag _) : base(_) { } 45 44 protected ScheduleEvaluator(ScheduleEvaluator original, Cloner cloner) : base(original, cloner) { } 46 45 protected ScheduleEvaluator() -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.Scheduling/3.3/Evaluators/SchedulingEvaluator.cs
r16453 r16462 28 28 using HeuristicLab.Optimization; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Fossil; 31 31 32 32 namespace HeuristicLab.Problems.Scheduling { 33 33 [Item("SchedulingEvaluator", "First applies the decoder operator to obtain a schedule from an encoding and then applies the evaluator to obtain a quality.")] 34 [Storable Class]34 [StorableType("A7AED7B7-C431-4E39-A002-8CBCA6223BCD")] 35 35 public class SchedulingEvaluator : InstrumentedOperator, ISchedulingEvaluator, IStochasticOperator { 36 36 … … 59 59 60 60 [StorableConstructor] 61 protected SchedulingEvaluator( bool deserializing) : base(deserializing) { }61 protected SchedulingEvaluator(StorableConstructorFlag _) : base(_) { } 62 62 protected SchedulingEvaluator(SchedulingEvaluator original, Cloner cloner) : base(original, cloner) { } 63 63 public SchedulingEvaluator() -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.Scheduling/3.3/HeuristicLab.Problems.Scheduling-3.3.csproj
r16454 r16462 110 110 <HintPath>..\..\packages\Google.Protobuf.3.6.1\lib\net45\Google.Protobuf.dll</HintPath> 111 111 </Reference> 112 <Reference Include="HEAL.Fossil, Version=1.0.0.0, Culture=neutral, processorArchitecture=MSIL">112 <Reference Include="HEAL.Fossil, Version=1.0.0.0, Culture=neutral, PublicKeyToken=ba48961d6f65dcec, processorArchitecture=MSIL"> 113 113 <HintPath>..\..\packages\HEAL.Fossil.1.0.0\lib\netstandard2.0\HEAL.Fossil.dll</HintPath> 114 114 </Reference> -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.Scheduling/3.3/JobShopSchedulingProblem.cs
r16453 r16462 32 32 using HeuristicLab.Encodings.ScheduleEncoding.PriorityRulesVector; 33 33 using HeuristicLab.Parameters; 34 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;34 using HEAL.Fossil; 35 35 using HeuristicLab.PluginInfrastructure; 36 36 using HeuristicLab.Problems.Instances; … … 39 39 [Item("Job Shop Scheduling Problem (JSSP)", "Represents a standard Job Shop Scheduling Problem")] 40 40 [Creatable(CreatableAttribute.Categories.CombinatorialProblems, Priority = 120)] 41 [Storable Class]41 [StorableType("BB12CCEC-A109-4A26-A1C7-5A0703AB7687")] 42 42 public sealed class JobShopSchedulingProblem : SchedulingProblem, IProblemInstanceConsumer<JSSPData>, IProblemInstanceExporter<JSSPData>, IStorableContent { 43 43 #region Default Instance … … 130 130 131 131 [StorableConstructor] 132 private JobShopSchedulingProblem( bool deserializing) : base(deserializing) { }132 private JobShopSchedulingProblem(StorableConstructorFlag _) : base(_) { } 133 133 private JobShopSchedulingProblem(JobShopSchedulingProblem original, Cloner cloner) 134 134 : base(original, cloner) { -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.Scheduling/3.3/SchedulingProblem.cs
r16453 r16462 24 24 using HeuristicLab.Encodings.ScheduleEncoding; 25 25 using HeuristicLab.Optimization; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Fossil; 27 27 28 28 namespace HeuristicLab.Problems.Scheduling { 29 29 [Item("SchedulingProblem", "Abstract class that represents a Scheduling Problem")] 30 [Storable Class]30 [StorableType("D3EFE88B-7725-40DF-861F-37B17314D3F5")] 31 31 public abstract class SchedulingProblem : SingleObjectiveHeuristicOptimizationProblem<ISchedulingEvaluator, IScheduleCreator> { 32 32 [StorableConstructor] 33 protected SchedulingProblem( bool deserializing) : base(deserializing) { }33 protected SchedulingProblem(StorableConstructorFlag _) : base(_) { } 34 34 protected SchedulingProblem(SchedulingProblem original, Cloner cloner) : base(original, cloner) { } 35 35 protected SchedulingProblem(ISchedulingEvaluator evaluator, IScheduleCreator creator) : base(evaluator, creator) { }
Note: See TracChangeset
for help on using the changeset viewer.