Free cookie consent management tool by TermsFeed Policy Generator

source: branches/2521_ProblemRefactoring/HeuristicLab.Encodings.SymbolicExpressionTreeEncoding/3.4/SymbolicExpressionTreeProblem.cs @ 17226

Last change on this file since 17226 was 17226, checked in by mkommend, 5 years ago

#2521: Merged trunk changes into problem refactoring branch.

File size: 2.7 KB
Line 
1#region License Information
2
3/* HeuristicLab
4 * Copyright (C) Heuristic and Evolutionary Algorithms Laboratory (HEAL)
5 *
6 * This file is part of HeuristicLab.
7 *
8 * HeuristicLab is free software: you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License as published by
10 * the Free Software Foundation, either version 3 of the License, or
11 * (at your option) any later version.
12 *
13 * HeuristicLab is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with HeuristicLab. If not, see <http://www.gnu.org/licenses/>.
20 */
21
22#endregion
23
24using System;
25using System.Linq;
26using HEAL.Attic;
27using HeuristicLab.Common;
28using HeuristicLab.Core;
29using HeuristicLab.Data;
30using HeuristicLab.Optimization;
31
32namespace HeuristicLab.Encodings.SymbolicExpressionTreeEncoding {
33  [StorableType("A1B9F4C8-5E29-493C-A483-2AC68453BC63")]
34  public abstract class SymbolicExpressionTreeProblem : SingleObjectiveProblem<SymbolicExpressionTreeEncoding, ISymbolicExpressionTree> {
35
36    // persistence
37    [StorableConstructor]
38    protected SymbolicExpressionTreeProblem(StorableConstructorFlag _) : base(_) { }
39    [StorableHook(HookType.AfterDeserialization)]
40    private void AfterDeserialization() { }
41
42
43    // cloning
44    protected SymbolicExpressionTreeProblem(SymbolicExpressionTreeProblem original, Cloner cloner)
45      : base(original, cloner) {
46    }
47
48    protected SymbolicExpressionTreeProblem(SymbolicExpressionTreeEncoding encoding)
49      : base(encoding) {
50      EncodingParameter.ReadOnly = true;
51    }
52
53    public override void Analyze(ISymbolicExpressionTree[] trees, double[] qualities, ResultCollection results,
54      IRandom random) {
55      if (!results.ContainsKey("Best Solution Quality")) {
56        results.Add(new Result("Best Solution Quality", typeof(DoubleValue)));
57      }
58      if (!results.ContainsKey("Best Solution")) {
59        results.Add(new Result("Best Solution", typeof(ISymbolicExpressionTree)));
60      }
61
62      var bestQuality = Maximization ? qualities.Max() : qualities.Min();
63
64      if (results["Best Solution Quality"].Value == null ||
65          IsBetter(bestQuality, ((DoubleValue)results["Best Solution Quality"].Value).Value)) {
66        var bestIdx = Array.IndexOf(qualities, bestQuality);
67        var bestClone = (IItem)trees[bestIdx].Clone();
68
69        results["Best Solution"].Value = bestClone;
70        results["Best Solution Quality"].Value = new DoubleValue(bestQuality);
71      }
72    }
73  }
74}
Note: See TracBrowser for help on using the repository browser.