Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
03/20/18 14:45:23 (6 years ago)
Author:
lkammere
Message:

#2886: Remove cosine from grammar.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/2886_SymRegGrammarEnumeration/HeuristicLab.Algorithms.DataAnalysis.SymRegGrammarEnumeration/GrammarEnumeration/Grammar.cs

    r15849 r15850  
    2626    public NonterminalSymbol ExpFactor;
    2727    public NonterminalSymbol SinFactor;
    28     public NonterminalSymbol CosFactor;
    2928
    3029    public NonterminalSymbol SimpleExpr;
     
    7574      ExpFactor = new NonterminalSymbol("ExpFactor");
    7675      SinFactor = new NonterminalSymbol("SinFactor");
    77       CosFactor = new NonterminalSymbol("CosFactor");
    7876
    7977      SimpleExpr = new NonterminalSymbol("SimpleExpr");
     
    119117        new Production(ExpFactor),
    120118        new Production(SinFactor),
    121         new Production(CosFactor),
    122119      };
    123120
     
    125122      productions[ExpFactor] = new[] { new Production(Const, SimpleTerm, Multiplication, Exp) };
    126123      productions[SinFactor] = new[] { new Production(SimpleExpr, Sin) };
    127       productions[CosFactor] = new[] { new Production(SimpleExpr, Cos) };
    128124
    129125      productions[SimpleExpr] = new[] {
Note: See TracChangeset for help on using the changeset viewer.