- Timestamp:
- 05/24/11 09:47:24 (14 years ago)
- 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 32 32 using HeuristicLab.Problems.Scheduling.Encodings; 33 33 using HeuristicLab.Operators; 34 using HeuristicLab.Problems.Scheduling.Interfaces; 34 35 35 36 … … 37 38 [Item("JSSP Evaluator", "Represents a evaluator class for standard job shop scheduling problems.")] 38 39 [StorableClass] 39 public abstract class JSSPEvaluator : JSSPOperator, IS ingleObjectiveEvaluator {40 public abstract class JSSPEvaluator : JSSPOperator, ISchedulingEvaluator { 40 41 [StorableConstructor] 41 42 protected JSSPEvaluator(bool deserializing) : base(deserializing) { } -
branches/Scheduling/HeuristicLab.Problems.Scheduling/3.3/Evaluators/MakespanEvaluator.cs
r6177 r6260 50 50 foreach (Resource r in schedule.Resources) { 51 51 if (r.TotalDuration.Value > quality.Value) { 52 quality = r.TotalDuration;52 quality.Value = r.TotalDuration.Value; 53 53 } 54 54 }
Note: See TracChangeset
for help on using the changeset viewer.