Changeset 17097 for stable/HeuristicLab.Problems.Scheduling/3.3/Evaluators
- Timestamp:
- 07/07/19 23:40:10 (6 years ago)
- Location:
- stable
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Problems.Scheduling/3.3/Evaluators/MakespanEvaluator.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. … … 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.Attic; 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() -
stable/HeuristicLab.Problems.Scheduling/3.3/Evaluators/MeanTardinessEvaluator.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.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.Attic; 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) { -
stable/HeuristicLab.Problems.Scheduling/3.3/Evaluators/ScheduleEvaluator.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. … … 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.Attic; 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() -
stable/HeuristicLab.Problems.Scheduling/3.3/Evaluators/SchedulingEvaluator.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. … … 28 28 using HeuristicLab.Optimization; 29 29 using HeuristicLab.Parameters; 30 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;30 using HEAL.Attic; 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()
Note: See TracChangeset
for help on using the changeset viewer.