Changeset 15861 for branches/2886_SymRegGrammarEnumeration/Test
- Timestamp:
- 03/23/18 18:57:36 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2886_SymRegGrammarEnumeration/Test/GrammarEnumerationTest.cs
r15860 r15861 60 60 public void NoConstants_Nguyen1() { 61 61 // x³ + x² + x 62 alg.OptimizeConstants = false; 62 63 alg.MaxComplexity = 6; 63 64 alg.Problem.ProblemData = new NguyenFunctionOne(Seed).GenerateRegressionData(); … … 117 118 public void NoConstants_Nguyen6() { 118 119 // sin(x) + sin(x + x²) 120 alg.OptimizeConstants = false; 119 121 alg.MaxComplexity = 4; 120 122 alg.Problem.ProblemData = new NguyenFunctionSix(Seed).GenerateRegressionData(); … … 147 149 [TestProperty("Goal", "structure search")] 148 150 public void NoConstants_Nguyen9() { 149 // sin(x) + sin(y²) 151 // sin(x) + sin(y²) 152 alg.OptimizeConstants = false; 150 153 alg.MaxComplexity = 3; 151 154 alg.Problem.ProblemData = new NguyenFunctionNine(Seed).GenerateRegressionData(); … … 190 193 [TestProperty("Goal", "structure search")] 191 194 public void NoConstants_Inverse() { 192 // x / (log(x)*x + x) 195 // x / (log(x)*x + x) 196 alg.OptimizeConstants = false; 193 197 alg.MaxComplexity = 4; 194 198
Note: See TracChangeset
for help on using the changeset viewer.