[16323] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[16565] | 3 | * Copyright (C) 2002-2019 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[16323] | 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 |
|
---|
| 22 | using System;
|
---|
[16303] | 23 | using System.Collections.Generic;
|
---|
| 24 | using System.Linq;
|
---|
| 25 | using HeuristicLab.Common;
|
---|
[16565] | 26 | using HEAL.Attic;
|
---|
[16303] | 27 |
|
---|
[16326] | 28 | namespace HeuristicLab.Problems.DataAnalysis {
|
---|
[16565] | 29 | [StorableType("849e42d3-8934-419d-9aff-64ad81c06b67")]
|
---|
[16303] | 30 | public class Interval : IEquatable<Interval> {
|
---|
[16565] | 31 | [Storable]
|
---|
[16327] | 32 | public double LowerBound { get; private set; }
|
---|
[16565] | 33 | [Storable]
|
---|
[16327] | 34 | public double UpperBound { get; private set; }
|
---|
[16303] | 35 |
|
---|
[16571] | 36 | [StorableConstructor]
|
---|
| 37 | protected Interval(StorableConstructorFlag _) { }
|
---|
| 38 |
|
---|
[16303] | 39 | public Interval(double lowerBound, double upperBound) {
|
---|
| 40 | if (lowerBound > upperBound)
|
---|
| 41 | throw new ArgumentException("LowerBound must be smaller than UpperBound.");
|
---|
| 42 |
|
---|
[16327] | 43 | this.LowerBound = lowerBound;
|
---|
| 44 | this.UpperBound = upperBound;
|
---|
[16303] | 45 | }
|
---|
| 46 |
|
---|
| 47 | public bool Contains(double value) {
|
---|
[16327] | 48 | return LowerBound <= value && value <= UpperBound;
|
---|
[16303] | 49 | }
|
---|
| 50 |
|
---|
| 51 | public override string ToString() {
|
---|
[16327] | 52 | return "Interval: [" + LowerBound + ", " + UpperBound + "]";
|
---|
[16303] | 53 | }
|
---|
| 54 |
|
---|
| 55 | public bool IsInfiniteOrUndefined {
|
---|
| 56 | get {
|
---|
| 57 | return double.IsInfinity(LowerBound) || double.IsInfinity(UpperBound) ||
|
---|
| 58 | double.IsNaN(LowerBound) || double.IsNaN(UpperBound);
|
---|
| 59 | }
|
---|
| 60 | }
|
---|
| 61 |
|
---|
[16404] | 62 | public static Interval GetInterval(IEnumerable<double> values) {
|
---|
[16407] | 63 | if (values == null) throw new ArgumentNullException("values");
|
---|
| 64 | if (!values.Any()) throw new ArgumentException($"No values are present.");
|
---|
[16404] | 65 |
|
---|
| 66 | var min = double.MaxValue;
|
---|
| 67 | var max = double.MinValue;
|
---|
| 68 |
|
---|
| 69 | foreach (var value in values) {
|
---|
| 70 | //If an value is NaN return an interval [NaN, NaN]
|
---|
| 71 | if (double.IsNaN(value)) return new Interval(double.NaN, double.NaN);
|
---|
| 72 |
|
---|
| 73 | if (value < min) min = value;
|
---|
| 74 | if (value > max) max = value;
|
---|
| 75 | }
|
---|
| 76 |
|
---|
| 77 | return new Interval(min, max);
|
---|
| 78 | }
|
---|
| 79 |
|
---|
[16303] | 80 | #region Equals, GetHashCode, == , !=
|
---|
| 81 | public bool Equals(Interval other) {
|
---|
| 82 | if (other == null)
|
---|
| 83 | return false;
|
---|
| 84 |
|
---|
[16407] | 85 | return (UpperBound.IsAlmost(other.UpperBound) || (double.IsNaN(UpperBound) && double.IsNaN(other.UpperBound)))
|
---|
| 86 | && (LowerBound.IsAlmost(other.LowerBound) || (double.IsNaN(LowerBound) && double.IsNaN(other.LowerBound)));
|
---|
[16303] | 87 | }
|
---|
| 88 |
|
---|
| 89 | public override bool Equals(object obj) {
|
---|
| 90 | return Equals(obj as Interval);
|
---|
| 91 | }
|
---|
| 92 |
|
---|
| 93 | public override int GetHashCode() {
|
---|
[16327] | 94 | return LowerBound.GetHashCode() ^ UpperBound.GetHashCode();
|
---|
[16303] | 95 | }
|
---|
| 96 |
|
---|
| 97 | public static bool operator ==(Interval interval1, Interval interval2) {
|
---|
| 98 | if (ReferenceEquals(interval1, null)) return ReferenceEquals(interval2, null);
|
---|
| 99 | return interval1.Equals(interval2);
|
---|
| 100 | }
|
---|
| 101 | public static bool operator !=(Interval interval1, Interval interval2) {
|
---|
| 102 | return !(interval1 == interval2);
|
---|
| 103 | }
|
---|
| 104 | #endregion
|
---|
| 105 |
|
---|
| 106 | #region operations
|
---|
| 107 |
|
---|
| 108 | // [x1,x2] + [y1,y2] = [x1 + y1,x2 + y2]
|
---|
| 109 | public static Interval Add(Interval a, Interval b) {
|
---|
[16327] | 110 | return new Interval(a.LowerBound + b.LowerBound, a.UpperBound + b.UpperBound);
|
---|
[16303] | 111 | }
|
---|
| 112 |
|
---|
| 113 | // [x1,x2] − [y1,y2] = [x1 − y2,x2 − y1]
|
---|
| 114 | public static Interval Subtract(Interval a, Interval b) {
|
---|
[16327] | 115 | return new Interval(a.LowerBound - b.UpperBound, a.UpperBound - b.LowerBound);
|
---|
[16303] | 116 | }
|
---|
| 117 |
|
---|
| 118 | // [x1,x2] * [y1,y2] = [min(x1*y1,x1*y2,x2*y1,x2*y2),max(x1*y1,x1*y2,x2*y1,x2*y2)]
|
---|
| 119 | public static Interval Multiply(Interval a, Interval b) {
|
---|
[16327] | 120 | double v1 = a.LowerBound * b.LowerBound;
|
---|
| 121 | double v2 = a.LowerBound * b.UpperBound;
|
---|
| 122 | double v3 = a.UpperBound * b.LowerBound;
|
---|
| 123 | double v4 = a.UpperBound * b.UpperBound;
|
---|
[16303] | 124 |
|
---|
| 125 | double min = Math.Min(Math.Min(v1, v2), Math.Min(v3, v4));
|
---|
[16646] | 126 | double max = Math.Max(Math.Max(v1, v2), Math.Max(v3, v4));
|
---|
[16303] | 127 | return new Interval(min, max);
|
---|
| 128 | }
|
---|
| 129 |
|
---|
[16327] | 130 | //mkommend: Division by intervals containing 0 is implemented as defined in
|
---|
[16303] | 131 | //http://en.wikipedia.org/wiki/Interval_arithmetic
|
---|
| 132 | public static Interval Divide(Interval a, Interval b) {
|
---|
| 133 | if (b.Contains(0.0)) {
|
---|
[16327] | 134 | if (b.LowerBound.IsAlmost(0.0)) return Interval.Multiply(a, new Interval(1.0 / b.UpperBound, double.PositiveInfinity));
|
---|
| 135 | else if (b.UpperBound.IsAlmost(0.0)) return Interval.Multiply(a, new Interval(double.NegativeInfinity, 1.0 / b.LowerBound));
|
---|
[16303] | 136 | else return new Interval(double.NegativeInfinity, double.PositiveInfinity);
|
---|
| 137 | }
|
---|
[16327] | 138 | return Interval.Multiply(a, new Interval(1.0 / b.UpperBound, 1.0 / b.LowerBound));
|
---|
[16303] | 139 | }
|
---|
| 140 |
|
---|
| 141 | public static Interval Sine(Interval a) {
|
---|
[16327] | 142 | if (Math.Abs(a.UpperBound - a.LowerBound) >= Math.PI * 2) return new Interval(-1, 1);
|
---|
[16303] | 143 |
|
---|
| 144 | //divide the interval by PI/2 so that the optima lie at x element of N (0,1,2,3,4,...)
|
---|
| 145 | double Pihalf = Math.PI / 2;
|
---|
| 146 | Interval scaled = Interval.Divide(a, new Interval(Pihalf, Pihalf));
|
---|
| 147 | //move to positive scale
|
---|
[16327] | 148 | if (scaled.LowerBound < 0) {
|
---|
| 149 | int periodsToMove = Math.Abs((int)scaled.LowerBound / 4) + 1;
|
---|
[16303] | 150 | scaled = Interval.Add(scaled, new Interval(periodsToMove * 4, periodsToMove * 4));
|
---|
| 151 | }
|
---|
| 152 |
|
---|
[16327] | 153 | double scaledLowerBound = scaled.LowerBound % 4.0;
|
---|
| 154 | double scaledUpperBound = scaled.UpperBound % 4.0;
|
---|
[16303] | 155 | if (scaledUpperBound < scaledLowerBound) scaledUpperBound += 4.0;
|
---|
| 156 | List<double> sinValues = new List<double>();
|
---|
| 157 | sinValues.Add(Math.Sin(scaledLowerBound * Pihalf));
|
---|
| 158 | sinValues.Add(Math.Sin(scaledUpperBound * Pihalf));
|
---|
| 159 |
|
---|
| 160 | int startValue = (int)Math.Ceiling(scaledLowerBound);
|
---|
| 161 | while (startValue < scaledUpperBound) {
|
---|
| 162 | sinValues.Add(Math.Sin(startValue * Pihalf));
|
---|
| 163 | startValue += 1;
|
---|
| 164 | }
|
---|
| 165 |
|
---|
| 166 | return new Interval(sinValues.Min(), sinValues.Max());
|
---|
| 167 | }
|
---|
| 168 | public static Interval Cosine(Interval a) {
|
---|
| 169 | return Interval.Sine(Interval.Subtract(a, new Interval(Math.PI / 2, Math.PI / 2)));
|
---|
| 170 | }
|
---|
| 171 | public static Interval Tangens(Interval a) {
|
---|
| 172 | return Interval.Divide(Interval.Sine(a), Interval.Cosine(a));
|
---|
| 173 | }
|
---|
| 174 |
|
---|
| 175 | public static Interval Logarithm(Interval a) {
|
---|
[16327] | 176 | return new Interval(Math.Log(a.LowerBound), Math.Log(a.UpperBound));
|
---|
[16303] | 177 | }
|
---|
| 178 | public static Interval Exponential(Interval a) {
|
---|
[16327] | 179 | return new Interval(Math.Exp(a.LowerBound), Math.Exp(a.UpperBound));
|
---|
[16303] | 180 | }
|
---|
| 181 |
|
---|
| 182 | public static Interval Power(Interval a, Interval b) {
|
---|
[16327] | 183 | if (a.Contains(0.0) && b.LowerBound < 0) return new Interval(double.NaN, double.NaN);
|
---|
[16303] | 184 |
|
---|
[16327] | 185 | int bLower = (int)Math.Round(b.LowerBound);
|
---|
| 186 | int bUpper = (int)Math.Round(b.UpperBound);
|
---|
[16303] | 187 |
|
---|
| 188 | List<double> powerValues = new List<double>();
|
---|
[16327] | 189 | powerValues.Add(Math.Pow(a.UpperBound, bUpper));
|
---|
| 190 | powerValues.Add(Math.Pow(a.UpperBound, bUpper - 1));
|
---|
| 191 | powerValues.Add(Math.Pow(a.UpperBound, bLower));
|
---|
| 192 | powerValues.Add(Math.Pow(a.UpperBound, bLower + 1));
|
---|
[16303] | 193 |
|
---|
[16327] | 194 | powerValues.Add(Math.Pow(a.LowerBound, bUpper));
|
---|
| 195 | powerValues.Add(Math.Pow(a.LowerBound, bUpper - 1));
|
---|
| 196 | powerValues.Add(Math.Pow(a.LowerBound, bLower));
|
---|
| 197 | powerValues.Add(Math.Pow(a.LowerBound, bLower + 1));
|
---|
[16303] | 198 |
|
---|
| 199 | return new Interval(powerValues.Min(), powerValues.Max());
|
---|
| 200 | }
|
---|
| 201 |
|
---|
[16323] | 202 | public static Interval Square(Interval a) {
|
---|
[16631] | 203 | if (a.UpperBound <= 0) return new Interval(a.UpperBound * a.UpperBound, a.LowerBound * a.LowerBound); // interval is negative
|
---|
| 204 | else if (a.LowerBound >= 0) return new Interval(a.LowerBound * a.LowerBound, a.UpperBound * a.UpperBound); // interval is positive
|
---|
| 205 | else return new Interval(0, Math.Max(a.LowerBound*a.LowerBound, a.UpperBound*a.UpperBound)); // interval goes over zero
|
---|
[16323] | 206 | }
|
---|
[16303] | 207 |
|
---|
[16631] | 208 | public static Interval Cube(Interval a) {
|
---|
| 209 | return new Interval(Math.Pow(a.LowerBound, 3), Math.Pow(a.UpperBound, 3));
|
---|
[16323] | 210 | }
|
---|
| 211 |
|
---|
[16303] | 212 | public static Interval Root(Interval a, Interval b) {
|
---|
[16327] | 213 | int lower = (int)Math.Round(b.LowerBound);
|
---|
| 214 | int higher = (int)Math.Round(b.UpperBound);
|
---|
[16303] | 215 |
|
---|
[16327] | 216 | return new Interval(Math.Pow(a.LowerBound, 1.0 / higher), Math.Pow(a.UpperBound, 1.0 / lower));
|
---|
[16303] | 217 | }
|
---|
| 218 |
|
---|
[16323] | 219 | public static Interval SquareRoot(Interval a) {
|
---|
[16631] | 220 | if (a.LowerBound < 0) return new Interval(double.NaN, double.NaN);
|
---|
| 221 | return new Interval(Math.Sqrt(a.LowerBound), Math.Sqrt(a.UpperBound));
|
---|
[16323] | 222 | }
|
---|
[16303] | 223 |
|
---|
[16323] | 224 | public static Interval CubicRoot(Interval a) {
|
---|
[16631] | 225 | if (a.LowerBound < 0) return new Interval(double.NaN, double.NaN);
|
---|
| 226 | return new Interval(Math.Pow(a.LowerBound, 1.0/3), Math.Pow(a.UpperBound, 1.0/3));
|
---|
[16303] | 227 | }
|
---|
| 228 | #endregion
|
---|
| 229 | }
|
---|
| 230 | }
|
---|