Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
05/24/11 09:47:24 (14 years ago)
Author:
jhelm
Message:

#1329: Implemented PermutationWithRepetition Encoding. Implemented new operators for JSM Encoding.

Location:
branches/Scheduling/HeuristicLab.Problems.Scheduling/3.3/Evaluators
Files:
1 added
1 deleted
2 edited

Legend:

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

    r6177 r6260  
    3232using HeuristicLab.Problems.Scheduling.Encodings;
    3333using HeuristicLab.Operators;
     34using HeuristicLab.Problems.Scheduling.Interfaces;
    3435
    3536
     
    3738  [Item("JSSP Evaluator", "Represents a evaluator class for standard job shop scheduling problems.")]
    3839  [StorableClass]
    39   public abstract class JSSPEvaluator : JSSPOperator, ISingleObjectiveEvaluator {
     40  public abstract class JSSPEvaluator : JSSPOperator, ISchedulingEvaluator {
    4041    [StorableConstructor]
    4142    protected JSSPEvaluator(bool deserializing) : base(deserializing) { }
  • branches/Scheduling/HeuristicLab.Problems.Scheduling/3.3/Evaluators/MakespanEvaluator.cs

    r6177 r6260  
    5050      foreach (Resource r in schedule.Resources) {
    5151        if (r.TotalDuration.Value > quality.Value) {
    52           quality = r.TotalDuration;
     52          quality.Value = r.TotalDuration.Value;
    5353        }
    5454      }
Note: See TracChangeset for help on using the changeset viewer.