- Timestamp:
- 01/02/19 10:02:21 (6 years ago)
- Location:
- branches/2520_PersistenceReintegration/HeuristicLab.Problems.Scheduling/3.3
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2520_PersistenceReintegration/HeuristicLab.Problems.Scheduling/3.3/Decoders/JSMDecodingErrorPolicyTypes.cs
r16453 r16477 1 #region License Information 1 using HEAL.Fossil; 2 #region License Information 2 3 /* HeuristicLab 3 4 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 21 22 22 23 namespace HeuristicLab.Problems.Scheduling { 24 [StorableType("546CD984-4CBF-4AF8-8E92-C9EDC5426CB4")] 23 25 public enum JSMDecodingErrorPolicyTypes { 24 26 RandomPolicy, -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.Scheduling/3.3/Decoders/JSMForcingStrategyTypes.cs
r16453 r16477 1 #region License Information 1 using HEAL.Fossil; 2 #region License Information 2 3 /* HeuristicLab 3 4 * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL) … … 21 22 22 23 namespace HeuristicLab.Problems.Scheduling { 24 [StorableType("24F9DDB2-C881-4C8D-AED8-76683C53110C")] 23 25 public enum JSMForcingStrategyTypes { 24 26 ShiftForcing, -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.Scheduling/3.3/Interfaces/IJSSPOperator.cs
r16453 r16477 22 22 using HeuristicLab.Core; 23 23 using HeuristicLab.Encodings.ScheduleEncoding; 24 using HEAL.Fossil; 24 25 25 26 namespace HeuristicLab.Problems.Scheduling { 27 [StorableType("E4140EFF-9E57-4457-A495-3F00A9612E9B")] 26 28 public interface IJSSPOperator : IOperator { 27 29 ILookupParameter<ItemList<Job>> JobDataParameter { get; } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.Scheduling/3.3/Interfaces/IScheduleDecoder.cs
r16453 r16477 21 21 22 22 using HeuristicLab.Core; 23 using HEAL.Fossil; 23 24 24 25 namespace HeuristicLab.Encodings.ScheduleEncoding { 26 [StorableType("010C752F-0F5E-4B93-8695-8DD74903DBE7")] 25 27 public interface IScheduleDecoder : IOperator { 26 28 ILookupParameter<IScheduleEncoding> ScheduleEncodingParameter { get; } -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.Scheduling/3.3/Interfaces/IScheduleEvaluator.cs
r16453 r16477 23 23 using HeuristicLab.Encodings.ScheduleEncoding; 24 24 using HeuristicLab.Optimization; 25 using HEAL.Fossil; 25 26 26 27 namespace HeuristicLab.Problems.Scheduling { 28 [StorableType("0F899B47-ABDA-46D3-9634-7919E3DFA528")] 27 29 /// <summary> 28 30 /// An evaluator for a Schedule -
branches/2520_PersistenceReintegration/HeuristicLab.Problems.Scheduling/3.3/Interfaces/ISchedulingEvaluator.cs
r16453 r16477 23 23 using HeuristicLab.Encodings.ScheduleEncoding; 24 24 using HeuristicLab.Optimization; 25 using HEAL.Fossil; 25 26 26 27 namespace HeuristicLab.Problems.Scheduling { 28 [StorableType("9E6BC36E-D5A6-4C64-9512-391C382E3527")] 27 29 /// <summary> 28 30 /// An evaluator for a scheduling problem representation
Note: See TracChangeset
for help on using the changeset viewer.