Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ProgrammableProblem/HeuristicLab.Problems.ExternalEvaluation/3.4/ExternalEvaluationProblem.cs @ 11900

Last change on this file since 11900 was 11900, checked in by abeham, 9 years ago

#2174:

  • Removed compilation calls from the problem (AfterDeserialization and in cloning constructor) and instead compile instance lazily when accessed
  • Compile support code in ExternalEvaluationProblem lazy
  • Fixed encoding class names in template code files (forgot to add vector)
File size: 7.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2014 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.Drawing;
25using System.Linq;
26using System.Threading;
27using Google.ProtocolBuffers;
28using HeuristicLab.Common;
29using HeuristicLab.Core;
30using HeuristicLab.Data;
31using HeuristicLab.Optimization;
32using HeuristicLab.Parameters;
33using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
34using HeuristicLab.Problems.Programmable;
35
36namespace HeuristicLab.Problems.ExternalEvaluation {
37  [Item("External Evaluation Problem", "A problem that is evaluated in a different process.")]
38  [Creatable("Problems")]
39  [StorableClass]
40  public sealed class ExternalEvaluationProblem : SingleObjectiveBasicProblem<IEncoding> {
41
42    public static new Image StaticItemImage {
43      get { return HeuristicLab.Common.Resources.VSImageLibrary.Type; }
44    }
45
46    #region Parameters
47    public OptionalValueParameter<EvaluationCache> CacheParameter {
48      get { return (OptionalValueParameter<EvaluationCache>)Parameters["Cache"]; }
49    }
50    public IValueParameter<CheckedItemCollection<IEvaluationServiceClient>> ClientsParameter {
51      get { return (IValueParameter<CheckedItemCollection<IEvaluationServiceClient>>)Parameters["Clients"]; }
52    }
53    public IValueParameter<SolutionMessageBuilder> MessageBuilderParameter {
54      get { return (IValueParameter<SolutionMessageBuilder>)Parameters["MessageBuilder"]; }
55    }
56    public IFixedValueParameter<SingleObjectiveOptimizationSupportScript> SupportScriptParameter {
57      get { return (IFixedValueParameter<SingleObjectiveOptimizationSupportScript>)Parameters["SupportScript"]; }
58    }
59    #endregion
60
61    #region Properties
62    public EvaluationCache Cache {
63      get { return CacheParameter.Value; }
64    }
65    public CheckedItemCollection<IEvaluationServiceClient> Clients {
66      get { return ClientsParameter.Value; }
67    }
68    public SolutionMessageBuilder MessageBuilder {
69      get { return MessageBuilderParameter.Value; }
70    }
71    public SingleObjectiveOptimizationSupportScript OptimizationSupportScript {
72      get { return SupportScriptParameter.Value; }
73    }
74    private ISingleObjectiveOptimizationSupport OptimizationSupport {
75      get { return SupportScriptParameter.Value; }
76    }
77    #endregion
78
79    [StorableConstructor]
80    private ExternalEvaluationProblem(bool deserializing) : base(deserializing) { }
81    private ExternalEvaluationProblem(ExternalEvaluationProblem original, Cloner cloner) : base(original, cloner) { }
82    public override IDeepCloneable Clone(Cloner cloner) {
83      return new ExternalEvaluationProblem(this, cloner);
84    }
85    public ExternalEvaluationProblem()
86      : base() {
87      Parameters.Add(new OptionalValueParameter<EvaluationCache>("Cache", "Cache of previously evaluated solutions."));
88      Parameters.Add(new ValueParameter<CheckedItemCollection<IEvaluationServiceClient>>("Clients", "The clients that are used to communicate with the external application.", new CheckedItemCollection<IEvaluationServiceClient>() { new EvaluationServiceClient() }));
89      Parameters.Add(new ValueParameter<SolutionMessageBuilder>("MessageBuilder", "The message builder that converts from HeuristicLab objects to SolutionMessage representation.", new SolutionMessageBuilder()));
90      Parameters.Add(new FixedValueParameter<SingleObjectiveOptimizationSupportScript>("SupportScript", "A script that can provide neighborhood and analyze the results of the optimization.", new SingleObjectiveOptimizationSupportScript()));
91    }
92
93    #region Single Objective Problem Overrides
94    public override bool Maximization {
95      get { return Parameters.ContainsKey("Maximization") && ((IValueParameter<BoolValue>)Parameters["Maximization"]).Value.Value; }
96    }
97
98    public override double Evaluate(Individual individual, IRandom random) {
99      return Cache == null ? EvaluateOnNextAvailableClient(BuildSolutionMessage(individual)).Quality
100        : Cache.GetValue(BuildSolutionMessage(individual), m => EvaluateOnNextAvailableClient(m).Quality);
101    }
102
103    public override void Analyze(Individual[] individuals, double[] qualities, ResultCollection results, IRandom random) {
104      OptimizationSupport.Analyze(individuals, qualities, results, random);
105    }
106
107    public override IEnumerable<Individual> GetNeighbors(Individual individual, IRandom random) {
108      return OptimizationSupport.GetNeighbors(individual, random);
109    }
110    #endregion
111
112    #region Evaluation Helpers
113    private HashSet<IEvaluationServiceClient> activeClients = new HashSet<IEvaluationServiceClient>();
114    private object clientLock = new object();
115    private QualityMessage EvaluateOnNextAvailableClient(SolutionMessage message) {
116      IEvaluationServiceClient client = null;
117      lock (clientLock) {
118        client = Clients.CheckedItems.FirstOrDefault(c => !activeClients.Contains(c));
119        while (client == null && Clients.CheckedItems.Any()) {
120          Monitor.Wait(clientLock);
121          client = Clients.CheckedItems.FirstOrDefault(c => !activeClients.Contains(c));
122        }
123        if (client != null)
124          activeClients.Add(client);
125      }
126      try {
127        return client.Evaluate(message, GetQualityMessageExtensions());
128      } finally {
129        lock (clientLock) {
130          activeClients.Remove(client);
131          Monitor.PulseAll(clientLock);
132        }
133      }
134    }
135
136    private ExtensionRegistry GetQualityMessageExtensions() {
137      return ExtensionRegistry.CreateInstance();
138    }
139
140    private SolutionMessage BuildSolutionMessage(Individual individual) {
141      lock (clientLock) {
142        SolutionMessage.Builder protobufBuilder = SolutionMessage.CreateBuilder();
143        protobufBuilder.SolutionId = 0;
144        var scope = new Scope();
145        individual.CopyToScope(scope);
146        foreach (var variable in scope.Variables) {
147          try {
148            MessageBuilder.AddToMessage(variable.Value, variable.Name, protobufBuilder);
149          } catch (ArgumentException ex) {
150            throw new InvalidOperationException(string.Format("ERROR while building solution message: Parameter {0} cannot be added to the message", name), ex);
151          }
152        }
153        return protobufBuilder.Build();
154      }
155    }
156    #endregion
157  }
158}
Note: See TracBrowser for help on using the repository browser.