Changeset 17097 for stable/HeuristicLab.Problems.Scheduling/3.3/Interfaces
- Timestamp:
- 07/07/19 23:40:10 (5 years ago)
- Location:
- stable
- Files:
-
- 5 edited
Legend:
- Unmodified
- Added
- Removed
-
stable
-
stable/HeuristicLab.Problems.Scheduling/3.3/Interfaces/IJSSPOperator.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.Core; 23 23 using HeuristicLab.Encodings.ScheduleEncoding; 24 using HEAL.Attic; 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; } -
stable/HeuristicLab.Problems.Scheduling/3.3/Interfaces/IScheduleDecoder.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. … … 21 21 22 22 using HeuristicLab.Core; 23 using HEAL.Attic; 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; } -
stable/HeuristicLab.Problems.Scheduling/3.3/Interfaces/IScheduleEvaluator.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.Encodings.ScheduleEncoding; 24 24 using HeuristicLab.Optimization; 25 using HEAL.Attic; 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 -
stable/HeuristicLab.Problems.Scheduling/3.3/Interfaces/ISchedulingEvaluator.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.Encodings.ScheduleEncoding; 24 24 using HeuristicLab.Optimization; 25 using HEAL.Attic; 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.