- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 11 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/Crossovers/DirectScheduleCrossover.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.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.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 [StorableConstructor] 32 protected DirectScheduleCrossover( bool deserializing) : base(deserializing) { }32 protected DirectScheduleCrossover(StorableConstructorFlag _) : base(_) { } 33 33 protected DirectScheduleCrossover(DirectScheduleCrossover original, Cloner cloner) : base(original, cloner) { } 34 34 public DirectScheduleCrossover() -
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/Crossovers/DirectScheduleGTCrossover.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.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.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() -
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/DirectScheduleRandomCreator.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 32 32 namespace HeuristicLab.Encodings.ScheduleEncoding { 33 33 [Item("DirectScheduleRandomCreator", "Creator class used to create schedule encoding objects.")] 34 [Storable Class]34 [StorableType("40BD24F4-7197-4F65-AFC0-AC28A372DD45")] 35 35 public class DirectScheduleRandomCreator : ScheduleCreator, IStochasticOperator { 36 36 … … 50 50 51 51 [StorableConstructor] 52 protected DirectScheduleRandomCreator( bool deserializing) : base(deserializing) { }52 protected DirectScheduleRandomCreator(StorableConstructorFlag _) : base(_) { } 53 53 protected DirectScheduleRandomCreator(DirectScheduleRandomCreator original, Cloner cloner) 54 54 : base(original, cloner) { -
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/GTAlgorithmUtils.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. -
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/Job.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. … … 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("Job", "Represents a composition of tasks that require processing in a scheduling problem.")] 32 [Storable Class]32 [StorableType("77EC3F5A-5539-4090-8EB6-6599F17A32D8")] 33 33 public class Job : Item, INotifyPropertyChanged { 34 34 … … 73 73 74 74 [StorableConstructor] 75 protected Job( bool deserializing) : base(deserializing) { }75 protected Job(StorableConstructorFlag _) : base(_) { } 76 76 protected Job(Job original, Cloner cloner) 77 77 : base(original, cloner) { -
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/Manipulators/DirectScheduleManipulator.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 H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.Encodings.ScheduleEncoding.ScheduleEncoding { 28 28 [Item("DirectScheduleManipulator", "An operator which manipulates a direct schedule representation.")] 29 [Storable Class]29 [StorableType("B5E31B46-3C2B-4DA5-AA5F-C0A88A4A8A26")] 30 30 public abstract class DirectScheduleManipulator : ScheduleManipulator, IDirectScheduleOperator { 31 31 32 32 [StorableConstructor] 33 protected DirectScheduleManipulator( bool deserializing) : base(deserializing) { }33 protected DirectScheduleManipulator(StorableConstructorFlag _) : base(_) { } 34 34 protected DirectScheduleManipulator(DirectScheduleManipulator original, Cloner cloner) : base(original, cloner) { } 35 35 public DirectScheduleManipulator() -
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/Resource.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 H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.Encodings.ScheduleEncoding { 28 28 [Item("ResourceClass", "Represents a resource used in scheduling problems.")] 29 [Storable Class]29 [StorableType("32C052AF-8397-4908-8044-507509871A3F")] 30 30 public class Resource : Item { 31 31 … … 42 42 43 43 [StorableConstructor] 44 protected Resource( bool deserializing) : base(deserializing) { }44 protected Resource(StorableConstructorFlag _) : base(_) { } 45 45 protected Resource(Resource original, Cloner cloner) 46 46 : base(original, cloner) { -
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/Schedule.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. … … 26 26 using HeuristicLab.Core; 27 27 using HeuristicLab.Data; 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 sealed class Schedule : NamedItem, IScheduleEncoding { 34 34 … … 63 63 64 64 [StorableConstructor] 65 private Schedule( bool deserializing) : base(deserializing) { }65 private Schedule(StorableConstructorFlag _) : base(_) { } 66 66 private Schedule(Schedule original, Cloner cloner) 67 67 : base(original, cloner) { -
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/ScheduledTask.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 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) { -
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/Task.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 H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.Encodings.ScheduleEncoding { 29 29 [Item("Task", "Represents a task that has to be scheduled.")] 30 [Storable Class]30 [StorableType("D28FB463-EA44-493B-B232-A851F22AFBAA")] 31 31 public class Task : Item, INotifyPropertyChanged { 32 32 … … 92 92 93 93 [StorableConstructor] 94 protected Task( bool deserializing) : base(deserializing) { }94 protected Task(StorableConstructorFlag _) : base(_) { } 95 95 protected Task(Task original, Cloner cloner) 96 96 : base(original, cloner) {
Note: See TracChangeset
for help on using the changeset viewer.