Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ParameterConfigurationEncoding/HeuristicLab.Encodings.ParameterConfigurationEncoding/3.3/RangeConstraints/PercentValueRange.cs @ 8535

Last change on this file since 8535 was 8535, checked in by jkarder, 12 years ago

#1853:

  • enhanced combinations count calculation
  • restructured code
  • minor code improvements
  • added license information
File size: 3.0 KB
Line 
1#region License Information
2/* HeuristicLab
3 * Copyright (C) 2002-2012 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 HeuristicLab.Common;
25using HeuristicLab.Core;
26using HeuristicLab.Data;
27using HeuristicLab.Persistence.Default.CompositeSerializers.Storable;
28
29namespace HeuristicLab.Encodings.ParameterConfigurationEncoding {
30  [StorableClass]
31  public class PercentValueRange : Range<PercentValue> {
32    #region Constructors and Cloning
33    [StorableConstructor]
34    protected PercentValueRange(bool deserializing) : base(deserializing) { }
35    protected PercentValueRange(PercentValueRange original, Cloner cloner) : base(original, cloner) { }
36    public PercentValueRange(PercentValue lowerBound, PercentValue upperBound, PercentValue stepSize) : base(lowerBound, upperBound, stepSize) { }
37    public override IDeepCloneable Clone(Cloner cloner) {
38      return new PercentValueRange(this, cloner);
39    }
40    #endregion
41
42    protected override PercentValue GetRandomSample(IRandom random) {
43      double val;
44      do {
45        val = Math.Round((random.NextDouble() * (UpperBound.Value - LowerBound.Value) + LowerBound.Value) / StepSize.Value, 0) * StepSize.Value;
46      } while (!IsInRange(val));
47      return new PercentValue(val);
48    }
49
50    public DoubleValueRange AsDoubleValueRange() {
51      return new DoubleValueRange(LowerBound, UpperBound, StepSize);
52    }
53
54    public double ApplyStepSize(double value) {
55      return ((int)Math.Round(value / this.StepSize.Value, 0)) * this.StepSize.Value;
56    }
57
58    public bool IsInRange(double value) {
59      return value <= this.UpperBound.Value && value >= this.LowerBound.Value;
60    }
61
62    public override IEnumerable<PercentValue> GetCombinations() {
63      var solutions = new List<PercentValue>();
64      double value = LowerBound.Value;
65
66      while (value <= UpperBound.Value) {
67        solutions.Add(new PercentValue(value));
68        value += StepSize.Value;
69        value = ApplyStepSize(value);
70      }
71      return solutions;
72    }
73
74    protected override double CalculateSimilarityValue(PercentValue a, PercentValue b) {
75      double range = UpperBound.Value - LowerBound.Value;
76      double diff = Math.Abs(a.Value - b.Value);
77      return Math.Max(0, (range - (diff * 2)) / range);
78    }
79  }
80}
Note: See TracBrowser for help on using the repository browser.