Changeset 14711 for branches/PersistenceOverhaul/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding
- Timestamp:
- 03/03/17 11:41:43 (8 years ago)
- Location:
- branches/PersistenceOverhaul/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/PersistenceOverhaul/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/Crossovers/DirectScheduleCrossover.cs
r13368 r14711 27 27 namespace HeuristicLab.Encodings.ScheduleEncoding.ScheduleEncoding { 28 28 [Item("DirectScheduleCrossover", "An operator which crosses two schedule representations.")] 29 [Storable Class("A56A9243-B3D6-41CE-BB78-951227FB4018")]29 [StorableType("A56A9243-B3D6-41CE-BB78-951227FB4018")] 30 30 public abstract class DirectScheduleCrossover : ScheduleCrossover, IDirectScheduleOperator { 31 31 [StorableConstructor] -
branches/PersistenceOverhaul/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/Crossovers/DirectScheduleGTCrossover.cs
r13368 r14711 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("432260C5-ED3B-4891-9BFC-94C35505D949")]30 [StorableType("432260C5-ED3B-4891-9BFC-94C35505D949")] 31 31 public class DirectScheduleGTCrossover : DirectScheduleCrossover { 32 32 -
branches/PersistenceOverhaul/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/DirectScheduleRandomCreator.cs
r13368 r14711 32 32 namespace HeuristicLab.Encodings.ScheduleEncoding { 33 33 [Item("DirectScheduleRandomCreator", "Creator class used to create schedule encoding objects.")] 34 [Storable Class("E1F84C6E-88DB-4632-96A3-0C224D73DC87")]34 [StorableType("E1F84C6E-88DB-4632-96A3-0C224D73DC87")] 35 35 public class DirectScheduleRandomCreator : ScheduleCreator, IStochasticOperator { 36 36 -
branches/PersistenceOverhaul/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/Job.cs
r13368 r14711 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("84DEDEFA-2824-4070-A823-42B7B24B6C52")]32 [StorableType("84DEDEFA-2824-4070-A823-42B7B24B6C52")] 33 33 public class Job : Item, INotifyPropertyChanged { 34 34 -
branches/PersistenceOverhaul/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/Manipulators/DirectScheduleManipulator.cs
r13368 r14711 27 27 namespace HeuristicLab.Encodings.ScheduleEncoding.ScheduleEncoding { 28 28 [Item("DirectScheduleManipulator", "An operator which manipulates a direct schedule representation.")] 29 [Storable Class("8B7DDBE9-0C57-43E1-8814-E896C055B566")]29 [StorableType("8B7DDBE9-0C57-43E1-8814-E896C055B566")] 30 30 public abstract class DirectScheduleManipulator : ScheduleManipulator, IDirectScheduleOperator { 31 31 -
branches/PersistenceOverhaul/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/Resource.cs
r13368 r14711 27 27 namespace HeuristicLab.Encodings.ScheduleEncoding { 28 28 [Item("ResourceClass", "Represents a resource used in scheduling problems.")] 29 [Storable Class("7620A743-DC44-4E98-8C36-39876D553789")]29 [StorableType("7620A743-DC44-4E98-8C36-39876D553789")] 30 30 public class Resource : Item { 31 31 -
branches/PersistenceOverhaul/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/Schedule.cs
r13368 r14711 30 30 namespace HeuristicLab.Encodings.ScheduleEncoding { 31 31 [Item("Schedule", "Represents the general solution for scheduling problems.")] 32 [Storable Class("DAB2933E-18F9-49E3-B33E-8E0F8EE4037A")]32 [StorableType("DAB2933E-18F9-49E3-B33E-8E0F8EE4037A")] 33 33 public class Schedule : NamedItem, IScheduleEncoding { 34 34 -
branches/PersistenceOverhaul/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/ScheduledTask.cs
r13368 r14711 27 27 namespace HeuristicLab.Encodings.ScheduleEncoding { 28 28 [Item("ScheduledTask", "Represents a task that has been scheduled already.")] 29 [Storable Class("B57F84B6-F704-4FA6-ADC6-706E3F8B6DF1")]29 [StorableType("B57F84B6-F704-4FA6-ADC6-706E3F8B6DF1")] 30 30 public class ScheduledTask : Item { 31 31 -
branches/PersistenceOverhaul/HeuristicLab.Encodings.ScheduleEncoding/3.3/ScheduleEncoding/Task.cs
r13368 r14711 28 28 namespace HeuristicLab.Encodings.ScheduleEncoding { 29 29 [Item("Task", "Represents a task that has to be scheduled.")] 30 [Storable Class("BEB96515-F4C5-4D4C-8957-8F4E73E3EAE2")]30 [StorableType("BEB96515-F4C5-4D4C-8957-8F4E73E3EAE2")] 31 31 public class Task : Item, INotifyPropertyChanged { 32 32
Note: See TracChangeset
for help on using the changeset viewer.