Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/sources/HeuristicLab.Problems.ExternalEvaluation/3.3/ExternalEvaluator.cs @ 3864

Last change on this file since 3864 was 3862, checked in by abeham, 14 years ago

#866

  • updated external evaluation problem
  • included in build config
File size: 3.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2010 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
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
22using System;
23using HeuristicLab.Core;
24using HeuristicLab.Data;
25using HeuristicLab.Operators;
26using HeuristicLab.Parameters;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28
29namespace HeuristicLab.Problems.ExternalEvaluation {
30  [Item("ExternalEvaluationValuesCollector", "Creates a solution message, and communicates it via the driver to receive a quality message.")]
31  [StorableClass]
32  public class ExternalEvaluator : ValuesCollector, IExternalEvaluationProblemEvaluator {
33    public ILookupParameter<DoubleValue> QualityParameter {
34      get { return (ILookupParameter<DoubleValue>)Parameters["Quality"]; }
35    }
36    public IValueLookupParameter<IExternalEvaluationDriver> DriverParameter {
37      get { return (IValueLookupParameter<IExternalEvaluationDriver>)Parameters["Driver"]; }
38    }
39
40    public ExternalEvaluator()
41      : base() {
42      Parameters.Add(new LookupParameter<DoubleValue>("Quality", "The quality of the current solution."));
43      Parameters.Add(new ValueLookupParameter<IExternalEvaluationDriver>("Driver", "The driver to communicate with the external process."));
44    }
45
46    public override IOperation Apply() {
47      IExternalEvaluationDriver driver = DriverParameter.ActualValue;
48      SolutionMessage.Builder messageBuilder = SolutionMessage.CreateBuilder();
49      messageBuilder.SolutionId = 0;
50      foreach (IParameter param in CollectedValues) {
51        IItem value = param.ActualValue;
52        if (value != null) {
53          ILookupParameter lookupParam = param as ILookupParameter;
54          string name = lookupParam != null ? lookupParam.TranslatedName : param.Name;
55          try {
56            value.AddToSolutionMessage(name, messageBuilder);
57          } catch (ArgumentException ex) {
58            throw new InvalidOperationException("ERROR in " + Name + ": Parameter " + name + " cannot be added to the message.", ex);
59          }
60        }
61      }
62      QualityMessage answer = driver.Evaluate(messageBuilder.Build());
63      if (QualityParameter.ActualValue == null)
64        QualityParameter.ActualValue = new DoubleValue(answer.Quality);
65      else QualityParameter.ActualValue.Value = answer.Quality;
66
67      return base.Apply();
68    }
69  }
70}
Note: See TracBrowser for help on using the repository browser.