Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ProgrammableProblem/HeuristicLab.Problems.Programmable/3.3/Encodings/RealEncoding.cs @ 11484

Last change on this file since 11484 was 11484, checked in by abeham, 10 years ago

#2174: Major refactoring

  • Removed ProblemDefinitionHosts
  • Renamed ParameterVector to Individual
  • Renamed Configuration to Encoding
  • Changed handling of existing operators that they will not be removed and recreated, but only rewired
File size: 3.1 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.Linq;
25using HeuristicLab.Common;
26using HeuristicLab.Core;
27using HeuristicLab.Data;
28using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
29
30namespace HeuristicLab.Problems.Programmable {
31  [Item("RealEncoding", "Describes a real vector encoding.")]
32  [StorableClass]
33  public class RealEncoding : Encoding {
34    [Storable]
35    private IntValue length;
36    public IntValue Length {
37      get { return length; }
38      set {
39        if (length == value) return;
40        length = value;
41        OnParameterConfigurationChanged();
42      }
43    }
44
45    [Storable]
46    private DoubleMatrix bounds;
47    public DoubleMatrix Bounds {
48      get { return bounds; }
49      set {
50        if (bounds == value) return;
51        bounds = value;
52        OnParameterConfigurationChanged();
53      }
54    }
55
56    [StorableConstructor]
57    protected RealEncoding(bool deserializing) : base(deserializing) { }
58    protected RealEncoding(RealEncoding original, Cloner cloner)
59      : base(original, cloner) {
60      length = cloner.Clone(original.length);
61      bounds = cloner.Clone(original.bounds);
62    }
63    public RealEncoding(string name, int length, double min, double max)
64      : base(name) {
65      if (min >= max) throw new ArgumentException("min must be less than max", "min");
66      this.length = new IntValue(length);
67      bounds = new DoubleMatrix(1, 2);
68      bounds[0, 0] = min;
69      bounds[0, 1] = max;
70    }
71    public RealEncoding(string name, int length, IList<double> min, IList<double> max)
72      : base(name) {
73      if (min.Count == 0) throw new ArgumentException("Bounds must be given for the real parameters.");
74      if (min.Count != max.Count) throw new ArgumentException("min must be of the same length as max", "min");
75      if (min.Zip(max, (mi, ma) => mi >= ma).Any(x => x)) throw new ArgumentException("min must be less than max in each dimension", "min");
76      this.length = new IntValue(length);
77      bounds = new DoubleMatrix(min.Count, 2);
78      for (int i = 0; i < min.Count; i++) {
79        bounds[i, 0] = min[i];
80        bounds[i, 1] = max[i];
81      }
82    }
83
84    public override IDeepCloneable Clone(Cloner cloner) {
85      return new RealEncoding(this, cloner);
86    }
87
88  }
89}
Note: See TracBrowser for help on using the repository browser.