Free cookie consent management tool by TermsFeed Policy Generator

source: stable/HeuristicLab.Problems.Scheduling/3.3/Evaluators/MakespanEvaluator.cs @ 17942

Last change on this file since 17942 was 17181, checked in by swagner, 5 years ago

#2875: Merged r17180 from trunk to stable

File size: 1.9 KB
RevLine 
[6121]1#region License Information
2/* HeuristicLab
[17181]3 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
[6121]4 *
5 * This file is part of HeuristicLab.
6 *
7 * HeuristicLab is free software: you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation, either version 3 of the License, or
10 * (at your option) any later version.
11 *
12 * HeuristicLab is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
19 */
20#endregion
21
[8882]22using System.Linq;
[6406]23using HeuristicLab.Common;
[6121]24using HeuristicLab.Core;
[6406]25using HeuristicLab.Encodings.ScheduleEncoding;
[17097]26using HEAL.Attic;
[6121]27
[6406]28namespace HeuristicLab.Problems.Scheduling {
[6121]29  [Item("Makespan Evaluator", "Represents an evaluator using the maximum makespan of a schedule.")]
[17097]30  [StorableType("DCD90872-1FF9-482F-8FCF-AD34AC6DF051")]
[8887]31  public class MakespanEvaluator : ScheduleEvaluator {
32
[6121]33    [StorableConstructor]
[17097]34    protected MakespanEvaluator(StorableConstructorFlag _) : base(_) { }
[8887]35    protected MakespanEvaluator(MakespanEvaluator original, Cloner cloner) : base(original, cloner) {}
36    public MakespanEvaluator()
37      : base() {
38      QualityParameter.ActualName = "Makespan";
[6121]39    }
[8887]40
[6121]41    public override IDeepCloneable Clone(Cloner cloner) {
42      return new MakespanEvaluator(this, cloner);
43    }
44
[8882]45    public static double GetMakespan(Schedule schedule) {
46      return schedule.Resources.Select(r => r.TotalDuration).Max();
[6121]47    }
48
[8887]49    protected override double Evaluate(Schedule schedule) {
50      return GetMakespan(schedule);
[8882]51    }
[6121]52  }
53}
Note: See TracBrowser for help on using the repository browser.