Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/10/11 17:25:35 (13 years ago)
Author:
jhelm
Message:

#1329: Implemented PriorityRulesVector based encoding and added new operators to the JSMEncoding. Added Gantt-Charts for visualization of schedules and problems.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/Scheduling/HeuristicLab.Problems.Scheduling/3.3/SchedulingProblem.cs

    r6121 r6177  
    2828using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
    2929using HeuristicLab.Common;
     30using HeuristicLab.Problems.Scheduling.Interfaces;
    3031
    3132namespace HeuristicLab.Problems.Scheduling {
    3233  [Item("Scheduling Problem", "Abstract class that represents a Scheduling Problem")]
    3334  [StorableClass]
    34   public abstract class SchedulingProblem : SingleObjectiveHeuristicOptimizationProblem<JSSPEvaluator, SchedulingCreator> {
     35  public abstract class SchedulingProblem : SingleObjectiveHeuristicOptimizationProblem<ISchedulingEvaluator, ISchedulingCreator> {
    3536    [StorableConstructor]
    3637    protected SchedulingProblem(bool deserializing) : base(deserializing) { }
     
    3940    }
    4041
    41     protected SchedulingProblem (JSSPEvaluator se, SchedulingCreator sc) : base (se, sc) {}
     42    protected SchedulingProblem (ISchedulingEvaluator se, ISchedulingCreator sc) : base (se, sc) {}
    4243
    4344  }
Note: See TracChangeset for help on using the changeset viewer.