- 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/Decoders/PRVDecoder.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("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()
Note: See TracChangeset
for help on using the changeset viewer.