[5574] | 1 | #region License Information
|
---|
| 2 | /* HeuristicLab
|
---|
[15583] | 3 | * Copyright (C) 2002-2018 Heuristic and Evolutionary Algorithms Laboratory (HEAL)
|
---|
[5574] | 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 | using System;
|
---|
[14826] | 22 | using System.Globalization;
|
---|
[5574] | 23 | using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding;
|
---|
| 24 | using Microsoft.VisualStudio.TestTools.UnitTesting;
|
---|
| 25 |
|
---|
[9764] | 26 | namespace HeuristicLab.Problems.DataAnalysis.Symbolic.Tests {
|
---|
[7915] | 27 |
|
---|
[5574] | 28 | [TestClass()]
|
---|
[7915] | 29 | public class SymbolicDataAnalysisExpressionTreeSimplifierTest {
|
---|
[9785] | 30 |
|
---|
[5574] | 31 | [TestMethod]
|
---|
[9785] | 32 | [TestCategory("Problems.DataAnalysis")]
|
---|
| 33 | [TestProperty("Time", "short")]
|
---|
[5574] | 34 | public void SimplifierAxiomsTest() {
|
---|
| 35 | SymbolicExpressionImporter importer = new SymbolicExpressionImporter();
|
---|
| 36 | SymbolicExpressionTreeStringFormatter formatter = new SymbolicExpressionTreeStringFormatter();
|
---|
| 37 | #region single argument arithmetics
|
---|
[14826] | 38 |
|
---|
| 39 | AssertEqualAfterSimplification("(+ 1.0)", "1.0");
|
---|
| 40 | AssertEqualAfterSimplification("(- 1.0)", "-1.0");
|
---|
| 41 | AssertEqualAfterSimplification("(- (variable 2.0 a))", "(variable -2.0 a)");
|
---|
| 42 | AssertEqualAfterSimplification("(* 2.0)", "2.0");
|
---|
| 43 | AssertEqualAfterSimplification("(* (variable 2.0 a))", "(variable 2.0 a)");
|
---|
| 44 | AssertEqualAfterSimplification("(/ 2.0)", "0.5");
|
---|
| 45 | AssertEqualAfterSimplification("(/ (variable 2.0 a))", "(/ 1.0 (variable 2.0 a))");
|
---|
[5574] | 46 | #endregion
|
---|
[14826] | 47 |
|
---|
[5574] | 48 | #region aggregation of constants into factors
|
---|
[14826] | 49 | AssertEqualAfterSimplification("(* 2.0 (variable 2.0 a))", "(variable 4.0 a)");
|
---|
| 50 | AssertEqualAfterSimplification("(/ (variable 2.0 a) 2.0)", "(variable 1.0 a)");
|
---|
| 51 | AssertEqualAfterSimplification("(/ (variable 2.0 a) (* 2.0 2.0))", "(variable 0.5 a)");
|
---|
[5574] | 52 | #endregion
|
---|
[14826] | 53 |
|
---|
[5574] | 54 | #region constant and variable folding
|
---|
[14826] | 55 | AssertEqualAfterSimplification("(+ 1.0 2.0)", "3.0");
|
---|
| 56 | AssertEqualAfterSimplification("(+ (variable 2.0 a) (variable 2.0 a))", "(variable 4.0 a)");
|
---|
| 57 | AssertEqualAfterSimplification("(- (variable 2.0 a) (variable 1.0 a))", "(variable 1.0 a)");
|
---|
| 58 | AssertEqualAfterSimplification("(* (variable 2.0 a) (variable 2.0 a))", "(* (* (variable 1.0 a) (variable 1.0 a)) 4.0)");
|
---|
| 59 | AssertEqualAfterSimplification("(/ (variable 1.0 a) (variable 2.0 a))", "0.5");
|
---|
[5574] | 60 | #endregion
|
---|
[14826] | 61 |
|
---|
[5574] | 62 | #region logarithm rules
|
---|
[14826] | 63 |
|
---|
| 64 | // cancellation
|
---|
| 65 | AssertEqualAfterSimplification("(log (exp (variable 2.0 a)))", "(variable 2.0 a)");
|
---|
| 66 | // must not transform logs in this way as we do not know wether both variables are positive
|
---|
| 67 | AssertEqualAfterSimplification("(log (* (variable 1.0 a) (variable 1.0 b)))", "(log (* (variable 1.0 a) (variable 1.0 b)))");
|
---|
| 68 | // must not transform logs in this way as we do not know wether both variables are positive
|
---|
| 69 | AssertEqualAfterSimplification("(log (/ (variable 1.0 a) (variable 1.0 b)))", "(log (/ (variable 1.0 a) (variable 1.0 b)))");
|
---|
[5574] | 70 | #endregion
|
---|
[14826] | 71 |
|
---|
[5574] | 72 | #region exponentiation rules
|
---|
[14826] | 73 | // cancellation
|
---|
| 74 | AssertEqualAfterSimplification("(exp (log (variable 2.0 a)))", "(variable 2.0 a)");
|
---|
| 75 | // exp transformation
|
---|
| 76 | AssertEqualAfterSimplification("(exp (+ (variable 2.0 a) (variable 3.0 b)))", "(* (exp (variable 2.0 a)) (exp (variable 3.0 b)))");
|
---|
| 77 | // exp transformation
|
---|
| 78 | AssertEqualAfterSimplification("(exp (- (variable 2.0 a) (variable 3.0 b)))", "(* (exp (variable 2.0 a)) (exp (variable -3.0 b)))");
|
---|
| 79 | // exp transformation
|
---|
| 80 | AssertEqualAfterSimplification("(exp (- (variable 2.0 a) (* (variable 3.0 b) (variable 4.0 c))))", "(* (exp (variable 2.0 a)) (exp (* (variable 1.0 b) (variable 1.0 c) -12.0)))");
|
---|
| 81 | // exp transformation
|
---|
| 82 | AssertEqualAfterSimplification("(exp (- (variable 2.0 a) (* (variable 3.0 b) (cos (variable 4.0 c)))))", "(* (exp (variable 2.0 a)) (exp (* (variable 1.0 b) (cos (variable 4.0 c)) -3.0)))");
|
---|
[5574] | 83 | #endregion
|
---|
[14826] | 84 |
|
---|
[5574] | 85 | #region power rules
|
---|
[14826] | 86 |
|
---|
| 87 | // cancellation
|
---|
| 88 | AssertEqualAfterSimplification("(pow (variable 2.0 a) 0.0)", "1.0");
|
---|
| 89 | // fixed point
|
---|
| 90 | AssertEqualAfterSimplification("(pow (variable 2.0 a) 1.0)", "(variable 2.0 a)");
|
---|
| 91 | // inversion fixed point
|
---|
| 92 | AssertEqualAfterSimplification("(pow (variable 2.0 a) -1.0)", "(/ 1.0 (variable 2.0 a))");
|
---|
| 93 | // inversion
|
---|
| 94 | AssertEqualAfterSimplification("(pow (variable 2.0 a) -2.0)", "(/ 1.0 (pow (variable 2.0 a) 2.0))");
|
---|
| 95 | // constant folding
|
---|
| 96 | AssertEqualAfterSimplification("(pow 3.0 2.0)", "9.0");
|
---|
[5574] | 97 | #endregion
|
---|
[14826] | 98 |
|
---|
[5574] | 99 | #region root rules
|
---|
[14826] | 100 | // cancellation
|
---|
| 101 | AssertEqualAfterSimplification("(root (variable 2.0 a) 0.0)", "1.0");
|
---|
| 102 | // fixed point
|
---|
| 103 | AssertEqualAfterSimplification("(root (variable 2.0 a) 1.0)", "(variable 2.0 a)");
|
---|
| 104 | // inversion fixed point
|
---|
| 105 | AssertEqualAfterSimplification("(root (variable 2.0 a) -1.0)", "(/ 1.0 (variable 2.0 a))");
|
---|
| 106 | // inversion
|
---|
| 107 | AssertEqualAfterSimplification("(root (variable 2.0 a) -2.0)", "(/ 1.0 (root (variable 2.0 a) 2.0))");
|
---|
| 108 | // constant folding
|
---|
| 109 | AssertEqualAfterSimplification("(root 9.0 2.0)", "3.0");
|
---|
[5574] | 110 | #endregion
|
---|
[14826] | 111 |
|
---|
[5574] | 112 | #region boolean operations
|
---|
[14826] | 113 | // always true and
|
---|
| 114 | AssertEqualAfterSimplification("(and 1.0 2.0)", "1.0");
|
---|
| 115 | // always false and
|
---|
| 116 | AssertEqualAfterSimplification("(and 1.0 -2.0)", "-1.0");
|
---|
| 117 | // always true or
|
---|
| 118 | AssertEqualAfterSimplification("(or -1.0 2.0)", "1.0");
|
---|
| 119 | // always false or
|
---|
| 120 | AssertEqualAfterSimplification("(or -1.0 -2.0)", "-1.0");
|
---|
| 121 | // constant not
|
---|
| 122 | AssertEqualAfterSimplification("(not -2.0)", "1.0");
|
---|
| 123 | // constant not
|
---|
| 124 | AssertEqualAfterSimplification("(not 2.0)", "-1.0");
|
---|
| 125 | // constant not
|
---|
| 126 | AssertEqualAfterSimplification("(not 0.0)", "1.0");
|
---|
| 127 | // nested nots
|
---|
| 128 | AssertEqualAfterSimplification("(not (not 1.0))", "1.0");
|
---|
| 129 | // not of non-Boolean argument
|
---|
| 130 | AssertEqualAfterSimplification("(not (variable 1.0 a))", "(not (> (variable 1.0 a) 0.0))");
|
---|
| 131 | // not Boolean argument
|
---|
| 132 | AssertEqualAfterSimplification("(not (and (> (variable 1.0 a) 0.0) (> (variable 1.0 a) 0.0)))", "(not (and (> (variable 1.0 a) 0.0) (> (variable 1.0 a) 0.0)))");
|
---|
[5574] | 133 | #endregion
|
---|
[14826] | 134 |
|
---|
[5574] | 135 | #region conditionals
|
---|
[14826] | 136 | // always false
|
---|
| 137 | AssertEqualAfterSimplification("(if -1.0 (variable 2.0 a) (variable 3.0 a))", "(variable 3.0 a)");
|
---|
| 138 | // always true
|
---|
| 139 | AssertEqualAfterSimplification("(if 1.0 (variable 2.0 a) (variable 3.0 a))", "(variable 2.0 a)");
|
---|
| 140 | // always false (0.0)
|
---|
| 141 | AssertEqualAfterSimplification("(if 0.0 (variable 2.0 a) (variable 3.0 a))", "(variable 3.0 a)");
|
---|
| 142 | // complex constant condition (always false)
|
---|
| 143 | AssertEqualAfterSimplification("(if (* 1.0 -2.0) (variable 2.0 a) (variable 3.0 a))", "(variable 3.0 a)");
|
---|
| 144 | // complex constant condition (always false)
|
---|
| 145 | AssertEqualAfterSimplification("(if (/ (variable 1.0 a) (variable -2.0 a)) (variable 2.0 a) (variable 3.0 a))", "(variable 3.0 a)");
|
---|
| 146 | // insertion of relational operator
|
---|
| 147 | AssertEqualAfterSimplification("(if (variable 1.0 a) (variable 2.0 a) (variable 3.0 a))", "(if (> (variable 1.0 a) 0.0) (variable 2.0 a) (variable 3.0 a))");
|
---|
[5574] | 148 | #endregion
|
---|
[14826] | 149 |
|
---|
| 150 | #region factor variables
|
---|
| 151 | AssertEqualAfterSimplification("(factor a 1.0)", "(factor a 1.0)");
|
---|
| 152 | // factor folding
|
---|
| 153 | AssertEqualAfterSimplification("(+ (factor a 1.0 1.0) (factor a 2.0 3.0))", "(factor a 3.0 4.0)");
|
---|
| 154 | AssertEqualAfterSimplification("(- (factor a 1.0 1.0) (factor a 2.0 3.0))", "(factor a -1.0 -2.0)");
|
---|
| 155 | AssertEqualAfterSimplification("(* (factor a 2.0 2.0) (factor a 2.0 3.0))", "(factor a 4.0 6.0)");
|
---|
| 156 | AssertEqualAfterSimplification("(/ (factor a 2.0 5.0))", "(factor a 0.5 0.2)");
|
---|
| 157 | AssertEqualAfterSimplification("(/ (factor a 4.0 6.0) (factor a 2.0 3.0))", "(factor a 2.0 2.0)");
|
---|
| 158 | AssertEqualAfterSimplification("(+ 3.0 (factor a 4.0 6.0))", "(factor a 7.0 9.0)");
|
---|
| 159 | AssertEqualAfterSimplification("(+ (factor a 4.0 6.0) 3.0)", "(factor a 7.0 9.0)");
|
---|
| 160 | AssertEqualAfterSimplification("(- 3.0 (factor a 4.0 6.0))", "(factor a -1.0 -3.0)");
|
---|
| 161 | AssertEqualAfterSimplification("(- (factor a 4.0 6.0) 3.0)", "(factor a 1.0 3.0)");
|
---|
| 162 | AssertEqualAfterSimplification("(* 2.0 (factor a 4.0 6.0))", "(factor a 8.0 12.0)");
|
---|
| 163 | AssertEqualAfterSimplification("(* (factor a 4.0 6.0) 2.0)", "(factor a 8.0 12.0)");
|
---|
| 164 | AssertEqualAfterSimplification("(* (factor a 4.0 6.0) (variable 2.0 a))", "(* (factor a 8.0 12.0) (variable 1.0 a))"); // not possible (a is used as factor and double variable) interpreter will fail
|
---|
| 165 | AssertEqualAfterSimplification(
|
---|
| 166 | "(log (factor a 10.0 100.0))",
|
---|
| 167 | string.Format(CultureInfo.InvariantCulture, "(factor a {0} {1})", Math.Log(10.0), Math.Log(100.0)));
|
---|
| 168 | AssertEqualAfterSimplification(
|
---|
| 169 | "(exp (factor a 2.0 3.0))",
|
---|
| 170 | string.Format(CultureInfo.InvariantCulture, "(factor a {0} {1})", Math.Exp(2.0), Math.Exp(3.0)));
|
---|
| 171 | AssertEqualAfterSimplification("(sqrt (factor a 9.0 16.0))", "(factor a 3.0 4.0))");
|
---|
| 172 | AssertEqualAfterSimplification("(sqr (factor a 2.0 3.0))", "(factor a 4.0 9.0))");
|
---|
| 173 | AssertEqualAfterSimplification("(root (factor a 8.0 27.0) 3)", "(factor a 2.0 3.0))");
|
---|
| 174 | AssertEqualAfterSimplification("(pow (factor a 2.0 3.0) 3)", "(factor a 8.0 27.0))");
|
---|
| 175 |
|
---|
| 176 | AssertEqualAfterSimplification("(sin (factor a 1.0 2.0) )",
|
---|
| 177 | string.Format(CultureInfo.InvariantCulture, "(factor a {0} {1}))", Math.Sin(1.0), Math.Sin(2.0)));
|
---|
| 178 | AssertEqualAfterSimplification("(cos (factor a 1.0 2.0) )",
|
---|
| 179 | string.Format(CultureInfo.InvariantCulture, "(factor a {0} {1}))", Math.Cos(1.0), Math.Cos(2.0)));
|
---|
| 180 | AssertEqualAfterSimplification("(tan (factor a 1.0 2.0) )",
|
---|
| 181 | string.Format(CultureInfo.InvariantCulture, "(factor a {0} {1}))", Math.Tan(1.0), Math.Tan(2.0)));
|
---|
| 182 |
|
---|
| 183 |
|
---|
| 184 | AssertEqualAfterSimplification("(binfactor a val 1.0)", "(binfactor a val 1.0)");
|
---|
| 185 | // binfactor folding
|
---|
| 186 | AssertEqualAfterSimplification("(+ (binfactor a val 1.0) (binfactor a val 2.0))", "(binfactor a val 3.0)");
|
---|
| 187 | AssertEqualAfterSimplification("(+ (binfactor a val0 1.0) (binfactor a val1 2.0))", "(+ (binfactor a val0 1.0) (binfactor a val1 2.0))"); // cannot be simplified (different vals)
|
---|
| 188 | AssertEqualAfterSimplification("(+ (binfactor a val 1.0) (binfactor b val 2.0))", "(+ (binfactor a val 1.0) (binfactor b val 2.0))"); // cannot be simplified (different vars)
|
---|
| 189 | AssertEqualAfterSimplification("(- (binfactor a val 1.0) (binfactor a val 2.0))", "(binfactor a val -1.0)");
|
---|
| 190 | AssertEqualAfterSimplification("(* (binfactor a val 2.0) (binfactor a val 3.0))", "(binfactor a val 6.0)");
|
---|
| 191 | AssertEqualAfterSimplification("(/ (binfactor a val 6.0) (binfactor a val 3.0))", "(/ (binfactor a val 6.0) (binfactor a val 3.0))"); // not allowed! 0/0 for other values than 'val'
|
---|
| 192 | AssertEqualAfterSimplification("(/ (binfactor a val 4.0))", "(/ 1.0 (binfactor a val 4.0))"); // not allowed!
|
---|
| 193 |
|
---|
| 194 | AssertEqualAfterSimplification("(+ 3.0 (binfactor a val 4.0 ))", "(+ (binfactor a val 4.0 ) 3.0))"); // not allowed
|
---|
| 195 | AssertEqualAfterSimplification("(- 3.0 (binfactor a val 4.0 ))", "(+ (binfactor a val -4.0 ) 3.0)");
|
---|
| 196 | AssertEqualAfterSimplification("(+ (binfactor a val 4.0 ) 3.0)", "(+ (binfactor a val 4.0 ) 3.0)"); // not allowed
|
---|
| 197 | AssertEqualAfterSimplification("(- (binfactor a val 4.0 ) 3.0)", "(+ (binfactor a val 4.0 ) -3.0)");
|
---|
| 198 | AssertEqualAfterSimplification("(* 2.0 (binfactor a val 4.0))", "(binfactor a val 8.0 )");
|
---|
| 199 | AssertEqualAfterSimplification("(* (binfactor a val 4.0) 2.0)", "(binfactor a val 8.0 )");
|
---|
| 200 | AssertEqualAfterSimplification("(* (binfactor a val 4.0) (variable 2.0 a))", "(* (binfactor a val 1.0) (variable 1.0 a) 8.0)"); // not possible (a is used as factor and double variable) interpreter will fail
|
---|
| 201 | AssertEqualAfterSimplification("(log (binfactor a val 10.0))", "(log (binfactor a val 10.0))"); // not allowed (log(0))
|
---|
| 202 |
|
---|
| 203 | // exp( binfactor w val=a) = if(val=a) exp(w) else exp(0) = binfactor( (exp(w) - 1) val a) + 1
|
---|
| 204 | AssertEqualAfterSimplification("(exp (binfactor a val 3.0))",
|
---|
| 205 | string.Format(CultureInfo.InvariantCulture, "(+ (binfactor a val {0}) 1.0)", Math.Exp(3.0) - 1)
|
---|
| 206 | );
|
---|
| 207 | AssertEqualAfterSimplification("(sqrt (binfactor a val 16.0))", "(binfactor a val 4.0))"); // sqrt(0) = 0
|
---|
| 208 | AssertEqualAfterSimplification("(sqr (binfactor a val 3.0))", "(binfactor a val 9.0))"); // 0*0 = 0
|
---|
| 209 | AssertEqualAfterSimplification("(root (binfactor a val 27.0) 3)", "(binfactor a val 3.0))");
|
---|
| 210 | AssertEqualAfterSimplification("(pow (binfactor a val 3.0) 3)", "(binfactor a val 27.0))");
|
---|
| 211 |
|
---|
| 212 | AssertEqualAfterSimplification("(sin (binfactor a val 2.0) )",
|
---|
| 213 | string.Format(CultureInfo.InvariantCulture, "(binfactor a val {0}))", Math.Sin(2.0))); // sin(0) = 0
|
---|
| 214 | AssertEqualAfterSimplification("(cos (binfactor a val 2.0) )",
|
---|
| 215 | string.Format(CultureInfo.InvariantCulture, "(+ (binfactor a val {0}) 1.0)", Math.Cos(2.0) - 1)); // cos(0) = 1
|
---|
| 216 | AssertEqualAfterSimplification("(tan (binfactor a val 2.0) )",
|
---|
| 217 | string.Format(CultureInfo.InvariantCulture, "(binfactor a val {0}))", Math.Tan(2.0))); // tan(0) = 0
|
---|
| 218 |
|
---|
| 219 | // combination of factor and binfactor
|
---|
| 220 | AssertEqualAfterSimplification("(+ (binfactor a x0 2.0) (factor a 2.0 3.0))", "(factor a 4.0 3.0)");
|
---|
| 221 | AssertEqualAfterSimplification("(+ (factor a 2.0 3.0) (binfactor a x0 2.0))", "(factor a 4.0 3.0)");
|
---|
| 222 | AssertEqualAfterSimplification("(* (binfactor a x1 2.0) (factor a 2.0 3.0))", "(binfactor a x1 6.0)"); // all other values have weight zero in binfactor
|
---|
| 223 | AssertEqualAfterSimplification("(* (factor a 2.0 3.0) (binfactor a x1 2.0))", "(binfactor a x1 6.0)"); // all other values have weight zero in binfactor
|
---|
| 224 | AssertEqualAfterSimplification("(/ (binfactor a x0 2.0) (factor a 2.0 3.0))", "(binfactor a x0 1.0)");
|
---|
| 225 | AssertEqualAfterSimplification("(/ (factor a 2.0 3.0) (binfactor a x0 2.0))",
|
---|
| 226 | string.Format(CultureInfo.InvariantCulture, "(factor a 1.0 {0})", 3.0 / 0.0));
|
---|
| 227 | AssertEqualAfterSimplification("(- (binfactor a x0 2.0) (factor a 2.0 3.0))", "(factor a 0.0 -3.0)");
|
---|
| 228 | AssertEqualAfterSimplification("(- (factor a 2.0 3.0) (binfactor a x0 2.0))", "(factor a 0.0 3.0)");
|
---|
| 229 | #endregion
|
---|
[5574] | 230 | }
|
---|
| 231 |
|
---|
[14826] | 232 |
|
---|
| 233 | private void AssertEqualAfterSimplification(string original, string expected) {
|
---|
| 234 | var formatter = new SymbolicExpressionTreeStringFormatter();
|
---|
| 235 | var importer = new SymbolicExpressionImporter();
|
---|
[14949] | 236 | var actualTree = TreeSimplifier.Simplify(importer.Import(original));
|
---|
[14826] | 237 | var expectedTree = importer.Import(expected);
|
---|
| 238 | Assert.AreEqual(formatter.Format(expectedTree), formatter.Format(actualTree));
|
---|
| 239 |
|
---|
[5574] | 240 | }
|
---|
| 241 | }
|
---|
| 242 | }
|
---|
[14826] | 243 |
|
---|