Changeset 15850
- Timestamp:
- 03/20/18 14:45:23 (7 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/2886_SymRegGrammarEnumeration/HeuristicLab.Algorithms.DataAnalysis.SymRegGrammarEnumeration/GrammarEnumeration/Grammar.cs
r15849 r15850 26 26 public NonterminalSymbol ExpFactor; 27 27 public NonterminalSymbol SinFactor; 28 public NonterminalSymbol CosFactor;29 28 30 29 public NonterminalSymbol SimpleExpr; … … 75 74 ExpFactor = new NonterminalSymbol("ExpFactor"); 76 75 SinFactor = new NonterminalSymbol("SinFactor"); 77 CosFactor = new NonterminalSymbol("CosFactor");78 76 79 77 SimpleExpr = new NonterminalSymbol("SimpleExpr"); … … 119 117 new Production(ExpFactor), 120 118 new Production(SinFactor), 121 new Production(CosFactor),122 119 }; 123 120 … … 125 122 productions[ExpFactor] = new[] { new Production(Const, SimpleTerm, Multiplication, Exp) }; 126 123 productions[SinFactor] = new[] { new Production(SimpleExpr, Sin) }; 127 productions[CosFactor] = new[] { new Production(SimpleExpr, Cos) };128 124 129 125 productions[SimpleExpr] = new[] {
Note: See TracChangeset
for help on using the changeset viewer.