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

Merge getAlphabet from master

parent 34313b56
No related branches found
No related tags found
No related merge requests found
Showing with 84 additions and 5 deletions
......@@ -87,6 +87,11 @@ bool Alternation::operator<(const Alternation& other) const {
return **thisIter < **otherIter;
}
 
void Alternation::getAlphabet( std::set<alphabet::Symbol> & alphabet ) const {
for(const auto& child : this->elements)
child->getAlphabet(alphabet);
}
bool Alternation::operator==(const Alternation& other) const {
if(this->elements.size() != other.elements.size()) return false;
 
......
......@@ -50,7 +50,12 @@ public:
virtual bool operator<(const Concatenation&) const;
virtual bool operator<(const Alternation&) const;
virtual bool operator==(const Alternation&) const;
/**
* @copydoc RegExpElement::getAlphabet() const
*/
virtual void getAlphabet( std::set<alphabet::Symbol> & alphabet ) const;
/**
* @copydoc RegExpElement::containsEmptyString() const
*/
......
......@@ -95,6 +95,11 @@ bool Concatenation::operator==(const Concatenation& other) const {
return true;
}
 
void Concatenation::getAlphabet( std::set<alphabet::Symbol> & alphabet ) const {
for(const auto& child : this->elements)
child->getAlphabet(alphabet);
}
bool Concatenation::containsEmptyString() const {
for(const auto& e : getElements())
if( ! e->containsEmptyString())
......
......@@ -50,6 +50,11 @@ public:
virtual bool operator<(const Concatenation&) const;
virtual bool operator==(const Concatenation&) const;
 
/**
* @copydoc RegExpElement::getAlphabet() const
*/
virtual void getAlphabet( std::set<alphabet::Symbol> & alphabet ) const;
/**
* @copydoc RegExpElement::containsEmptyString() const
*/
......
......@@ -93,6 +93,10 @@ bool Iteration::operator==(const Iteration& other) const {
return *(this->element) == *(other.element);
}
 
void Iteration::getAlphabet( std::set<alphabet::Symbol> & alphabet ) const {
element->getAlphabet( alphabet );
}
bool Iteration::containsEmptyString() const {
return true;
}
......
......@@ -58,6 +58,11 @@ public:
virtual bool operator<(const Iteration&) const;
virtual bool operator==(const Iteration&) const;
 
/**
* @copydoc RegExpElement::getAlphabet() const
*/
virtual void getAlphabet( std::set<alphabet::Symbol> & alphabet ) const;
/**
* @copydoc RegExpElement::containsEmptyString() const
*/
......
......@@ -69,6 +69,15 @@ void RegExp::setRegExp(RegExpElement* regExp) {
this->regExp = regExp;
}
 
set<alphabet::Symbol> RegExp::getAlphabet() const {
set<alphabet::Symbol> alphabet;
if(regExp)
regExp->getAlphabet( alphabet );
return alphabet;
}
bool RegExp::isEmpty() const {
return regExp == NULL || regExp->isEmpty();
}
......
......@@ -55,7 +55,13 @@ public:
* @param regExp root node to set
*/
void setRegExp(RegExpElement* regExp);
/**
* Gets alphabet symbols used in RegExp.
* @return set of alphabet symbols used in regexp.
*/
std::set<alphabet::Symbol> getAlphabet() const;
/**
* @return true if regexp represents empty language
*/
......
......@@ -9,6 +9,8 @@
#define REGEXPELEMENT_H_
 
#include "../std/visitor.hpp"
#include "../alphabet/Symbol.h"
#include <set>
 
namespace regexp {
 
......@@ -67,6 +69,13 @@ public:
* @return true if this subtree describes empty language
*/
virtual bool isEmpty() const = 0;
/**
* Traverses the regexp tree to get alphabet symbols used.
*
* @param alphabet All alphabet symbols encountered are added into this set
*/
virtual void getAlphabet( std::set<alphabet::Symbol> & alphabet ) const = 0;
};
 
} /* namespace regexp */
......
......@@ -53,6 +53,10 @@ bool RegExpEmpty::operator==(const RegExpEmpty&) const {
return true;
}
 
void RegExpEmpty::getAlphabet( std::set<alphabet::Symbol> & alphabet ) const {
}
bool RegExpEmpty::containsEmptyString() const {
return false;
}
......
......@@ -36,7 +36,12 @@ public:
virtual bool operator<(const RegExpSymbol&) const;
virtual bool operator<(const RegExpEpsilon&) const;
virtual bool operator==(const RegExpEmpty&) const;
/**
* @copydoc RegExpElement::getAlphabet() const
*/
virtual void getAlphabet( std::set<alphabet::Symbol> & alphabet ) const;
/**
* @copydoc RegExpElement::containsEmptyString() const
*/
......
......@@ -49,6 +49,10 @@ bool RegExpEpsilon::operator==(const RegExpEpsilon&) const {
return true;
}
 
void RegExpElement::getAlphabet( std::set<alphabet::Symbol> & alphabet ) const {
}
bool RegExpEpsilon::containsEmptyString() const {
return true;
}
......
......@@ -37,7 +37,12 @@ public:
virtual bool operator<(const Iteration&) const;
virtual bool operator<(const RegExpSymbol&) const;
virtual bool operator==(const RegExpEpsilon&) const;
/**
* @copydoc RegExpElement::getAlphabet() const
*/
virtual void getAlphabet( std::set<alphabet::Symbol> & alphabet ) const;
/**
* @copydoc RegExpElement::containsEmptyString() const
*/
......
......@@ -62,6 +62,10 @@ bool RegExpSymbol::isEmpty() const {
return false;
}
 
void RegExpSymbol::getAlphabet( std::set<alphabet::Symbol> & alphabet ) const {
alphabet.insert( Symbol( this->getSymbol( ) ) );
}
const string& RegExpSymbol::getSymbol() const {
return this->symbol;
}
......
......@@ -41,7 +41,11 @@ public:
virtual bool operator<(const RegExpSymbol&) const;
virtual bool operator==(const RegExpSymbol&) const;
 
/**
* @copydoc RegExpElement::getAlphabet() const
*/
virtual void getAlphabet( std::set<alphabet::Symbol> & alphabet ) const;
/**
* @copydoc RegExpElement::containsEmptyString() 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