Free cookie consent management tool by TermsFeed Policy Generator

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

Last change on this file since 3861 was 3859, checked in by abeham, 14 years ago

#866

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