[12328] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[14185] | 3 | * Copyright (C) 2002-2016 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[12328] | 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 |
|
---|
| 22 | using System;
|
---|
| 23 | using HeuristicLab.Common;
|
---|
| 24 | using HeuristicLab.Core;
|
---|
| 25 | using HeuristicLab.Data;
|
---|
[14927] | 26 | using HeuristicLab.Persistence;
|
---|
[12328] | 27 |
|
---|
[12529] | 28 | namespace HeuristicLab.Optimization {
|
---|
[12402] | 29 | [Item("ExecutionTimeTerminator", "A termination criterion based on execution time of an algorithm.")]
|
---|
[14927] | 30 | [StorableType("be3d1793-0191-48fb-a65f-27d7f87fb4a2")]
|
---|
[12402] | 31 | public class ExecutionTimeTerminator : ThresholdTerminator<TimeSpanValue> {
|
---|
[12328] | 32 |
|
---|
| 33 | [Storable]
|
---|
| 34 | private readonly IExecutable executable;
|
---|
| 35 |
|
---|
| 36 | [StorableConstructor]
|
---|
[15018] | 37 | protected ExecutionTimeTerminator(StorableConstructorFlag deserializing) : base(deserializing) { }
|
---|
[12402] | 38 | protected ExecutionTimeTerminator(ExecutionTimeTerminator original, Cloner cloner)
|
---|
[12328] | 39 | : base(original, cloner) {
|
---|
[13779] | 40 | executable = cloner.Clone(original.executable);
|
---|
[12328] | 41 | }
|
---|
| 42 | public override IDeepCloneable Clone(Cloner cloner) {
|
---|
[12402] | 43 | return new ExecutionTimeTerminator(this, cloner);
|
---|
[12328] | 44 | }
|
---|
[12402] | 45 | public ExecutionTimeTerminator(IExecutable executable)
|
---|
[12405] | 46 | : this(executable, new TimeSpanValue(new TimeSpan(0, 10, 0))) { }
|
---|
| 47 | public ExecutionTimeTerminator(IExecutable executable, TimeSpanValue maximumExecutionTime)
|
---|
| 48 | : base(maximumExecutionTime) {
|
---|
[12328] | 49 | this.executable = executable;
|
---|
[12402] | 50 | Name = "Execution Time";
|
---|
[12328] | 51 | }
|
---|
| 52 |
|
---|
[12407] | 53 | protected override bool CheckContinueCriterion() {
|
---|
[12366] | 54 | var max = ThresholdParameter.Value.Value;
|
---|
[12407] | 55 | return executable.ExecutionTime < max;
|
---|
[12328] | 56 | }
|
---|
[12405] | 57 |
|
---|
| 58 | public override string ToString() {
|
---|
| 59 | if (Threshold == null) return Name;
|
---|
[12407] | 60 | else return string.Format("{0} {1} {2}", Name, "<", ThresholdParameter.Value);
|
---|
[12405] | 61 | }
|
---|
[12328] | 62 | }
|
---|
| 63 | } |
---|