- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/JobSequenceMatrix/Crossovers/JSMCrossover.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. … … 22 22 using HeuristicLab.Common; 23 23 using HeuristicLab.Core; 24 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;24 using HEAL.Attic; 25 25 26 26 namespace HeuristicLab.Encodings.ScheduleEncoding.JobSequenceMatrix { 27 27 [Item("JSMCrossover", "An operator which crosses two JSM representations.")] 28 [Storable Class]28 [StorableType("09F360FC-2AA0-4C05-98E1-0BE700355C96")] 29 29 public abstract class JSMCrossover : ScheduleCrossover, IJSMOperator { 30 30 31 31 [StorableConstructor] 32 protected JSMCrossover( bool deserializing) : base(deserializing) { }32 protected JSMCrossover(StorableConstructorFlag _) : base(_) { } 33 33 protected JSMCrossover(JSMCrossover original, Cloner cloner) : base(original, cloner) { } 34 34 public JSMCrossover() -
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/JobSequenceMatrix/Crossovers/JSMJOXCrossover.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.Encodings.PermutationEncoding; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.Encodings.ScheduleEncoding.JobSequenceMatrix { 29 29 [Item("JSMJobbasedOrderCrossover", "Represents a crossover operation swapping subsequences of the parents to generate offspring.")] 30 [Storable Class]30 [StorableType("3D9540B9-6834-4C34-8D5D-001FBF442344")] 31 31 public class JSMJOXCrossover : JSMCrossover { 32 32 33 33 [StorableConstructor] 34 protected JSMJOXCrossover( bool deserializing) : base(deserializing) { }34 protected JSMJOXCrossover(StorableConstructorFlag _) : base(_) { } 35 35 protected JSMJOXCrossover(JSMJOXCrossover original, Cloner cloner) : base(original, cloner) { } 36 36 public JSMJOXCrossover() : base() { } -
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/JobSequenceMatrix/Crossovers/JSMOXCrossover.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. … … 22 22 using HeuristicLab.Common; 23 23 using HeuristicLab.Core; 24 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;24 using HEAL.Attic; 25 25 26 26 namespace HeuristicLab.Encodings.ScheduleEncoding.JobSequenceMatrix { 27 27 [Item("JSMOrderCrossover", "Represents a crossover operation swapping sequences of the parents to generate offspring.")] 28 [Storable Class]28 [StorableType("8F353BE8-40E4-4C0E-A677-4B1F43A66A65")] 29 29 public class JSMOXCrossover : JSMCrossover { 30 30 31 31 [StorableConstructor] 32 protected JSMOXCrossover( bool deserializing) : base(deserializing) { }32 protected JSMOXCrossover(StorableConstructorFlag _) : base(_) { } 33 33 protected JSMOXCrossover(JSMOXCrossover original, Cloner cloner) : base(original, cloner) { } 34 34 public JSMOXCrossover() : base() { } -
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/JobSequenceMatrix/Crossovers/JSMSXXCrossover.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.Encodings.PermutationEncoding; 25 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;25 using HEAL.Attic; 26 26 27 27 namespace HeuristicLab.Encodings.ScheduleEncoding.JobSequenceMatrix { 28 28 [Item("JSMSubsequenceExchangeCrossover", "Represents a crossover operation identifiying and exchanging equal subsequences of the parents to generate offspring.")] 29 [Storable Class]29 [StorableType("029A3890-FEB7-4D01-9092-E33CEBD8C0CC")] 30 30 public class JSMSXXCrossover : JSMCrossover { 31 31 32 32 [StorableConstructor] 33 protected JSMSXXCrossover( bool deserializing) : base(deserializing) { }33 protected JSMSXXCrossover(StorableConstructorFlag _) : base(_) { } 34 34 protected JSMSXXCrossover(JSMSXXCrossover original, Cloner cloner) : base(original, cloner) { } 35 35 public JSMSXXCrossover() : base() { } -
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/JobSequenceMatrix/JSMEncoding.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. … … 20 20 #endregion 21 21 22 using System;23 22 using System.Text; 24 23 using HeuristicLab.Common; 25 24 using HeuristicLab.Core; 26 25 using HeuristicLab.Encodings.PermutationEncoding; 27 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 28 27 29 28 namespace HeuristicLab.Encodings.ScheduleEncoding.JobSequenceMatrix { 30 29 [Item("JobSequenceMatrixEncoding", "Represents an encoding for a scheduling Problem using a list of job sequences to deliver scheduleinformation.")] 31 [Storable Class]30 [StorableType("8F19A51A-45F1-4C1D-BCD4-A9F57E40DDC5")] 32 31 public class JSMEncoding : Item, IScheduleEncoding { 33 32 … … 36 35 37 36 [StorableConstructor] 38 protected JSMEncoding( bool deserializing) : base(deserializing) { }37 protected JSMEncoding(StorableConstructorFlag _) : base(_) { } 39 38 protected JSMEncoding(JSMEncoding original, Cloner cloner) 40 39 : base(original, cloner) { -
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/JobSequenceMatrix/JSMRandomCreator.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.Optimization; 27 27 using HeuristicLab.Parameters; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.Encodings.ScheduleEncoding.JobSequenceMatrix { 31 31 [Item("JobSequenceMatrixCreator", "Creator class used to create Job Sequence Matrix solutions for standard JobShop scheduling problems.")] 32 [Storable Class]32 [StorableType("F8053C69-31C2-4E05-8FA0-5AED15FAF804")] 33 33 public class JSMRandomCreator : ScheduleCreator, IStochasticOperator { 34 34 … … 44 44 45 45 [StorableConstructor] 46 protected JSMRandomCreator( bool deserializing) : base(deserializing) { }46 protected JSMRandomCreator(StorableConstructorFlag _) : base(_) { } 47 47 protected JSMRandomCreator(JSMRandomCreator original, Cloner cloner) : base(original, cloner) { } 48 48 public JSMRandomCreator() -
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/JobSequenceMatrix/Manipulators/JSMManipulator.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.JobSequenceMatrix { 28 28 [Item("JSMManipulator", "An operator which manipulates a JSM representation.")] 29 [Storable Class]29 [StorableType("E190A576-B835-4343-9F0C-096E970B8DDD")] 30 30 public abstract class JSMManipulator : ScheduleManipulator, IJSMOperator { 31 31 [StorableConstructor] 32 protected JSMManipulator( bool deserializing) : base(deserializing) { }32 protected JSMManipulator(StorableConstructorFlag _) : base(_) { } 33 33 protected JSMManipulator(JSMManipulator original, Cloner cloner) : base(original, cloner) { } 34 34 public JSMManipulator() -
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/JobSequenceMatrix/Manipulators/JSMShiftChangeManipulator.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.Encodings.PermutationEncoding; 28 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;28 using HEAL.Attic; 29 29 30 30 namespace HeuristicLab.Encodings.ScheduleEncoding.JobSequenceMatrix { 31 31 [Item("JSMShiftChangeManipulator", "Represents a manipulation operation where the operations of a randomly determined job are shifted in one direction for all resources.")] 32 [Storable Class]32 [StorableType("69212E02-2006-493D-92C0-0EF4EFDAAF8A")] 33 33 public class JSMShiftChangeManipulator : JSMManipulator { 34 34 35 35 [StorableConstructor] 36 protected JSMShiftChangeManipulator( bool deserializing) : base(deserializing) { }36 protected JSMShiftChangeManipulator(StorableConstructorFlag _) : base(_) { } 37 37 protected JSMShiftChangeManipulator(JSMShiftChangeManipulator original, Cloner cloner) : base(original, cloner) { } 38 38 public JSMShiftChangeManipulator() : base() { } -
stable/HeuristicLab.Encodings.ScheduleEncoding/3.3/JobSequenceMatrix/Manipulators/JSMSwapManipulator.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.Core; 25 25 using HeuristicLab.Encodings.PermutationEncoding; 26 using H euristicLab.Persistence.Default.CompositeSerializers.Storable;26 using HEAL.Attic; 27 27 28 28 namespace HeuristicLab.Encodings.ScheduleEncoding.JobSequenceMatrix { 29 29 [Item("JSMSwapManipulator", "Represents a manipulation operation swapping parts of the individual.")] 30 [Storable Class]30 [StorableType("7BB1535F-C886-40A3-9F7C-4A54CED90A6E")] 31 31 public class JSMSwapManipulator : JSMManipulator { 32 32 33 33 [StorableConstructor] 34 protected JSMSwapManipulator( bool deserializing) : base(deserializing) { }34 protected JSMSwapManipulator(StorableConstructorFlag _) : base(_) { } 35 35 protected JSMSwapManipulator(JSMSwapManipulator original, Cloner cloner) : base(original, cloner) { } 36 36 public JSMSwapManipulator() : base() { }
Note: See TracChangeset
for help on using the changeset viewer.