Skip to content
Snippets Groups Projects
Commit 8652b44d authored by Martin Kočička's avatar Martin Kočička Committed by Jan Trávníček
Browse files

implemented generating unique end of input symbol for CFG

parent b51e1850
No related branches found
No related tags found
1 merge request!18Bp kocicma3
/*
* LRParser.cpp
*
* Created on: 30. 4. 2016
* Author: Martin Kocicka
*/
#include "LRParser.h"
#include <stack>
namespace grammar {
namespace parsing {
alphabet::Symbol LRParser::getEndOfInputSymbol ( grammar::CFG originalGrammar ) {
alphabet::Symbol endOfInputSymbol = alphabet::symbolFrom ( "$" );
while ( originalGrammar.getTerminalAlphabet ( ) . find ( endOfInputSymbol ) != originalGrammar.getTerminalAlphabet ( ) . end ( ) ) {
endOfInputSymbol.inc ( );
}
return endOfInputSymbol;
}
} /* namespace parsing */
} /* namespace grammar */
/*
* LRParser.h
*
* Created on: 30. 4. 2015
* Author: Martin Kocicka
*/
#ifndef LR_PARSER_H_
#define LR_PARSER_H_
#include <alphabet/Symbol.h>
#include <grammar/ContextFree/CFG.h>
namespace grammar {
namespace parsing {
class LRParser {
public:
static alphabet::Symbol getEndOfInputSymbol ( grammar::CFG originalGrammar );
};
} /* namespace parsing */
} /* namespace grammar */
#endif /* LR_PARSER_H_ */
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