Free cookie consent management tool by TermsFeed Policy Generator

source: branches/SimSharp/HeuristicLab.Problems.Programmable/3.3/Datastructures/RealParameterConfiguration.cs @ 10850

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

#2174: Major refactoring:

  • ParameterVector is only a temporary datastructure that is constructed for evaluation purposes only
  • Multiple permutations are allowed
  • Special support for single-vector encodings (to apply specialized algorithms such as PSO or CMA-ES)
  • General support for multi-vector encoding
File size: 3.2 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("RealParameterConfiguration", "")]
32  [StorableClass]
33  public class RealParameterConfiguration : ParameterConfiguration {
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 RealParameterConfiguration(bool deserializing) : base(deserializing) { }
58    protected RealParameterConfiguration(RealParameterConfiguration original, Cloner cloner)
59      : base(original, cloner) {
60      length = cloner.Clone(original.length);
61      bounds = cloner.Clone(original.bounds);
62    }
63    public RealParameterConfiguration(int length, double min, double max)
64      : base() {
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 RealParameterConfiguration(int length, IList<double> min, IList<double> max)
72      : base() {
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, (m, M) => m >= M).Any()) 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 RealParameterConfiguration(this, cloner);
86    }
87
88  }
89}
Note: See TracBrowser for help on using the repository browser.