Changeset 17537 for branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter
- Timestamp:
- 05/10/20 23:42:05 (5 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2971_named_intervals/HeuristicLab.Problems.DataAnalysis.Symbolic/3.4/Interpreter/IntervalInterpreter.cs
r17510 r17537 23 23 using System.Collections.Generic; 24 24 using System.Linq; 25 using HEAL.Attic; 25 26 using HeuristicLab.Common; 26 27 using HeuristicLab.Core; 27 28 using HeuristicLab.Data; 28 29 using HeuristicLab.Encodings.SymbolicExpressionTreeEncoding; 29 using HEAL.Attic;30 30 using HeuristicLab.Parameters; 31 31 … … 298 298 from n in tree.Root.GetSubtree(0).IterateNodesPrefix() 299 299 where 300 !(n.Symbol is Problems.DataAnalysis.Symbolic.Variable) && 301 !(n.Symbol is Constant) && 300 302 !(n.Symbol is StartSymbol) && 301 303 !(n.Symbol is Addition) && … … 308 310 !(n.Symbol is Logarithm) && 309 311 !(n.Symbol is Exponential) && 310 !(n.Symbol is Power) && //Interval Contains the symbol power, but the DerivativeCalculator does not!312 !(n.Symbol is Power) && 311 313 !(n.Symbol is Square) && 312 !(n.Symbol is Root) && //Interval Contains the symbol root, but the DerivativeCalculator does not!314 !(n.Symbol is Root) && 313 315 !(n.Symbol is SquareRoot) && 314 !(n.Symbol is Problems.DataAnalysis.Symbolic.Variable) &&315 !(n.Symbol is Constant) &&316 316 !(n.Symbol is Cube) && 317 317 !(n.Symbol is CubeRoot) &&
Note: See TracChangeset
for help on using the changeset viewer.