Changeset 16723 for branches/2521_ProblemRefactoring/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding
- Timestamp:
- 03/28/19 16:54:20 (6 years ago)
- Location:
- branches/2521_ProblemRefactoring
- Files:
-
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2521_ProblemRefactoring
- Property svn:mergeinfo changed
-
branches/2521_ProblemRefactoring/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/Crossovers/DirectScheduleCrossover.cs
r16692 r16723 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.Core; 24 24 using HeuristicLab.Parameters; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.Encodings.ScheduleEncoding { 28 28 [Item("DirectScheduleCrossover", "An operator which crosses two schedule representations.")] 29 [Storable Class]29 [StorableType("841CA966-FDB0-4C0D-BBE2-6A3422DF94CD")] 30 30 public abstract class DirectScheduleCrossover : ScheduleCrossover, IDirectScheduleOperator { 31 31 public ILookupParameter<ItemList<Job>> JobDataParameter { … … 34 34 35 35 [StorableConstructor] 36 protected DirectScheduleCrossover( bool deserializing) : base(deserializing) { }36 protected DirectScheduleCrossover(StorableConstructorFlag _) : base(_) { } 37 37 protected DirectScheduleCrossover(DirectScheduleCrossover original, Cloner cloner) : base(original, cloner) { } 38 38 public DirectScheduleCrossover() -
branches/2521_ProblemRefactoring/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/Crossovers/DirectScheduleGTCrossover.cs
r16692 r16723 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.Data; 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("DirectScheduleGTCrossover", "Represents a crossover using the GT-Algorithm to cross two direct schedule representations.")] 30 [Storable Class]30 [StorableType("07921864-BC23-431D-BA28-B302691F7FF8")] 31 31 public class DirectScheduleGTCrossover : DirectScheduleCrossover { 32 32 … … 36 36 37 37 [StorableConstructor] 38 protected DirectScheduleGTCrossover( bool deserializing) : base(deserializing) { }38 protected DirectScheduleGTCrossover(StorableConstructorFlag _) : base(_) { } 39 39 protected DirectScheduleGTCrossover(DirectScheduleGTCrossover original, Cloner cloner) : base(original, cloner) { } 40 40 public DirectScheduleGTCrossover() -
branches/2521_ProblemRefactoring/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/DirectScheduleRandomCreator.cs
r16692 r16723 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.Optimization; 25 25 using HeuristicLab.Parameters; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 29 29 namespace HeuristicLab.Encodings.ScheduleEncoding { 30 30 [Item("DirectScheduleRandomCreator", "Creator class used to create schedule encoding objects.")] 31 [Storable Class]31 [StorableType("40BD24F4-7197-4F65-AFC0-AC28A372DD45")] 32 32 public class DirectScheduleRandomCreator : ScheduleCreator<Schedule>, IStochasticOperator, IDirectScheduleOperator { 33 33 … … 40 40 41 41 [StorableConstructor] 42 protected DirectScheduleRandomCreator( bool deserializing) : base(deserializing) { }42 protected DirectScheduleRandomCreator(StorableConstructorFlag _) : base(_) { } 43 43 protected DirectScheduleRandomCreator(DirectScheduleRandomCreator original, Cloner cloner) 44 44 : base(original, cloner) { -
branches/2521_ProblemRefactoring/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/Manipulators/DirectScheduleManipulator.cs
r16692 r16723 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.Core; 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("DirectScheduleManipulator", "An operator which manipulates a direct schedule representation.")] 30 [Storable Class]30 [StorableType("B5E31B46-3C2B-4DA5-AA5F-C0A88A4A8A26")] 31 31 public abstract class DirectScheduleManipulator : ScheduleManipulator, IDirectScheduleOperator { 32 32 public ILookupParameter<ItemList<Job>> JobDataParameter { … … 35 35 36 36 [StorableConstructor] 37 protected DirectScheduleManipulator( bool deserializing) : base(deserializing) { }37 protected DirectScheduleManipulator(StorableConstructorFlag _) : base(_) { } 38 38 protected DirectScheduleManipulator(DirectScheduleManipulator original, Cloner cloner) : base(original, cloner) { } 39 39 -
branches/2521_ProblemRefactoring/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/Resource.cs
r16692 r16723 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 H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.Encodings.ScheduleEncoding { 29 29 [Item("ResourceClass", "Represents a resource used in scheduling problems.")] 30 [Storable Class]30 [StorableType("32C052AF-8397-4908-8044-507509871A3F")] 31 31 public sealed class Resource : Item { 32 32 … … 44 44 45 45 [StorableConstructor] 46 private Resource( bool deserializing) : base(deserializing) { }46 private Resource(StorableConstructorFlag _) : base(_) { } 47 47 private Resource(Resource original, Cloner cloner) 48 48 : base(original, cloner) { -
branches/2521_ProblemRefactoring/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/Schedule.cs
r16692 r16723 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. … … 26 26 using HeuristicLab.Common; 27 27 using HeuristicLab.Core; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.Encodings.ScheduleEncoding { 31 31 [Item("Schedule", "Represents the general solution for scheduling problems.")] 32 [Storable Class]32 [StorableType("EA6D14A3-7FA6-4B4B-B7F6-40B42657D398")] 33 33 public class Schedule : NamedItem, ISchedule { 34 34 … … 54 54 55 55 [StorableConstructor] 56 private Schedule( bool deserializing) : base(deserializing) { }56 private Schedule(StorableConstructorFlag _) : base(_) { } 57 57 private Schedule(Schedule original, Cloner cloner) 58 58 : base(original, cloner) { -
branches/2521_ProblemRefactoring/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/ScheduledTask.cs
r16692 r16723 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 H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.Encodings.ScheduleEncoding { 28 28 [Item("ScheduledTask", "Represents a task that has been scheduled already.")] 29 [Storable Class]29 [StorableType("8E947B77-37DF-4451-ACF4-03251516FC52")] 30 30 public class ScheduledTask : Item { 31 31 … … 49 49 50 50 [StorableConstructor] 51 protected ScheduledTask( bool deserializing) : base(deserializing) { }51 protected ScheduledTask(StorableConstructorFlag _) : base(_) { } 52 52 protected ScheduledTask(ScheduledTask original, Cloner cloner) 53 53 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.