Skip to content
Snippets Groups Projects
Commit 6727b053 authored by Jan Trávníček's avatar Jan Trávníček
Browse files

fix documentation of regexps

parent cb8c5ec7
No related branches found
No related tags found
No related merge requests found
...@@ -53,7 +53,7 @@ class GeneralAlphabet; ...@@ -53,7 +53,7 @@ class GeneralAlphabet;
* Formal regular expression represents regular expression where nodes of concatenation and alternation have exactly two children. Describes regular languages. * Formal regular expression represents regular expression where nodes of concatenation and alternation have exactly two children. Describes regular languages.
   
* \details * \details
* Definition is classical definition of finite automata. * Definition is unbounded definition of regular expressions.
* E = (T, C), * E = (T, C),
* T (Alphabet) = finite set of terminal symbols * T (Alphabet) = finite set of terminal symbols
* C (Content) = representation of the regular expression * C (Content) = representation of the regular expression
...@@ -156,7 +156,7 @@ public: ...@@ -156,7 +156,7 @@ public:
* *
* \param other the other instance * \param other the other instance
* *
* \returns the actual relation between two by type same automata instances * \returns the actual relation between two by type same expression instances
*/ */
int compare ( const FormalRegExp & other ) const; int compare ( const FormalRegExp & other ) const;
   
......
...@@ -53,7 +53,7 @@ class GeneralAlphabet; ...@@ -53,7 +53,7 @@ class GeneralAlphabet;
* Unbounded regular expression represents regular expression where nodes of concatenation and alternation can have any number of children. Describes regular languages. * Unbounded regular expression represents regular expression where nodes of concatenation and alternation can have any number of children. Describes regular languages.
   
* \details * \details
* Definition is classical definition of finite automata. * Definition is unbounded definition of regular expressions.
* E = (T, C), * E = (T, C),
* T (Alphabet) = finite set of terminal symbols * T (Alphabet) = finite set of terminal symbols
* C (Content) = representation of the regular expression * C (Content) = representation of the regular expression
...@@ -156,7 +156,7 @@ public: ...@@ -156,7 +156,7 @@ public:
* *
* \param other the other instance * \param other the other instance
* *
* \returns the actual relation between two by type same automata instances * \returns the actual relation between two by type same expression instances
*/ */
int compare ( const UnboundedRegExp & other ) const; int compare ( const UnboundedRegExp & other ) const;
   
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment