Free cookie consent management tool by TermsFeed Policy Generator

source: branches/ParameterConfigurationEncoding/HeuristicLab.Encodings.ParameterConfigurationEncoding/3.3/RangeConstraints/IntValueRange.cs @ 8517

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

#1853:

  • created branch for ParameterConfigurationEncoding
  • added CreateExperimentDialog that uses the extracted encoding
File size: 2.7 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 IntValueRange : Range<IntValue> {
32
33    public IntValueRange(IntValue lowerBound, IntValue upperBound, IntValue stepSize) : base(lowerBound, upperBound, stepSize) { }
34    [StorableConstructor]
35    protected IntValueRange(bool deserializing) : base(deserializing) { }
36    protected IntValueRange(IntValueRange original, Cloner cloner) : base(original, cloner) { }
37    public override IDeepCloneable Clone(Cloner cloner) {
38      return new IntValueRange(this, cloner);
39    }
40
41    protected override IntValue GetRandomSample(IRandom random) {
42      int val;
43      do {
44        val = random.Next(LowerBound.Value / StepSize.Value, UpperBound.Value / StepSize.Value + 1) * StepSize.Value;
45      } while (!IsInRange(val));
46      return new IntValue(val);
47    }
48
49    public int ApplyStepSize(int value) {
50      return ((int)Math.Round(value / (double)this.StepSize.Value, 0)) * this.StepSize.Value;
51    }
52
53    public bool IsInRange(int value) {
54      return value <= this.UpperBound.Value && value >= this.LowerBound.Value;
55    }
56
57    public override IEnumerable<IntValue> GetCombinations() {
58      var solutions = new List<IntValue>();
59      int value = this.LowerBound.Value;
60
61      while (value <= this.UpperBound.Value) {
62        solutions.Add(new IntValue(value));
63        value += this.StepSize.Value;
64      }
65      return solutions;
66    }
67
68    protected override double CalculateSimilarityValue(IntValue a, IntValue b) {
69      double range = UpperBound.Value - LowerBound.Value;
70      double diff = Math.Abs(a.Value - b.Value);
71      return Math.Max(0, (range - (diff * 2)) / range);
72    }
73  }
74}
Note: See TracBrowser for help on using the repository browser.