Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
01/12/18 16:27:39 (6 years ago)
Author:
gkronber
Message:

#2796: comments and typos

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/MCTS-SymbReg-2796/HeuristicLab.Algorithms.DataAnalysis/3.4/MctsSymbolicRegression/Automaton.cs

    r15441 r15606  
    2727
    2828namespace HeuristicLab.Algorithms.DataAnalysis.MctsSymbolicRegression {
    29   // this is the core class for generating expressions.
    30   // it represents a finite state automaton, each state transition can be associated with an action (e.g. to produce code).
    31   // the automaton determines the possible structures for expressions.
     29  // This is the core class for generating expressions.
     30  // It represents a finite state automaton, each state transition can be associated with an action (e.g. to produce code).
     31  // The automaton determines the possible structures for expressions.
    3232  //
    33   // to understand this code it is worthwile to generate a graphical visualization of the automaton (see PrintAutomaton).
    34   // If the code is compiled in debug mode the automaton produces a Graphviz file into the folder of the application
     33  // To understand this code, it is worthwhile to generate a graphical visualization of the automaton (see PrintAutomaton).
     34  // If the code is compiled in debug mode, the automaton produces a Graphviz file into the folder of the application
    3535  // whenever an instance of the automaton is constructed.
    3636  //
     
    139139    }
    140140
    141     // postfix notation
     141    // Produce postfix notation for expression:
    142142    // Expr -> 0 Term { '+' Term } '+' 'exit'
    143143    // Term -> c Fact { '*' Fact } '*'
     
    366366      followStates[StateExprEnd] = new List<int>(); // no follow states
    367367
    368       // order all followstates (the first follow state leads to the final state)
     368      // order all follow states (the first follow state leads to the final state)
    369369      foreach (var list in followStates) {
    370370        if (list != null)
Note: See TracChangeset for help on using the changeset viewer.