Changeset 14761 for branches/symbreg-factors-2650/HeuristicLab.Tests
- Timestamp:
- 03/18/17 12:17:13 (8 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/symbreg-factors-2650/HeuristicLab.Tests/HeuristicLab.Problems.DataAnalysis.Symbolic-3.4/InfixExpressionParserTest.cs
r14351 r14761 37 37 Console.WriteLine(formatter.Format(parser.Parse("3*3"))); 38 38 Console.WriteLine(formatter.Format(parser.Parse("3 * 4"))); 39 Console.WriteLine(formatter.Format(parser.Parse("123E-03") 39 Console.WriteLine(formatter.Format(parser.Parse("123E-03"))); 40 40 Console.WriteLine(formatter.Format(parser.Parse("123e-03"))); 41 41 Console.WriteLine(formatter.Format(parser.Parse("123e+03"))); … … 106 106 Console.WriteLine(formatter.Format(parser.Parse("x * LAG('x', +1)"))); 107 107 108 Console.WriteLine(formatter.Format(parser.Parse("x [1.0] * y"))); 109 Console.WriteLine(formatter.Format(parser.Parse("x [1.0, 2.0] * y [1.0, 2.0]"))); 110 Console.WriteLine(formatter.Format(parser.Parse("x[1] * y"))); 111 Console.WriteLine(formatter.Format(parser.Parse("x[1, 2] * y [1, 2]"))); 112 113 Console.WriteLine(formatter.Format(parser.Parse("x='bla' * y"))); 114 Console.WriteLine(formatter.Format(parser.Parse("x = 'bla'"))); 115 Console.WriteLine(formatter.Format(parser.Parse("x = \"bla\""))); 116 Console.WriteLine(formatter.Format(parser.Parse("1.0 * x = bla"))); 117 Console.WriteLine(formatter.Format(parser.Parse("1.0 * \"x\" = bla + y = \"bla2\""))); 108 118 } 109 119 }
Note: See TracChangeset
for help on using the changeset viewer.