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

remove epsilon rules from grammar exposed

parent 39cb8f16
No related branches found
No related tags found
No related merge requests found
...@@ -12,13 +12,14 @@ ...@@ -12,13 +12,14 @@
   
#include "automaton/simplify/EpsilonRemoverIncoming.h" #include "automaton/simplify/EpsilonRemoverIncoming.h"
#include "automaton/simplify/EpsilonRemoverOutgoing.h" #include "automaton/simplify/EpsilonRemoverOutgoing.h"
#include "grammar/simplify/EpsilonRemover.h"
   
int main(int argc, char** argv) { int main(int argc, char** argv) {
   
try { try {
TCLAP::CmdLine cmd("Automaton rename binary", ' ', "0.01"); TCLAP::CmdLine cmd("Automaton rename binary", ' ', "0.01");
   
TCLAP::ValueArg<std::string> input( "i", "input", "Automaton where to remove epsilon transitions", false, "-", "file"); TCLAP::ValueArg<std::string> input( "i", "input", "Automaton/Grammar where to remove epsilon transitions", false, "-", "file");
cmd.add( input ); cmd.add( input );
   
std::vector<std::string> algorithms{"incoming", "outgoing", "default" }; std::vector<std::string> algorithms{"incoming", "outgoing", "default" };
...@@ -39,10 +40,17 @@ int main(int argc, char** argv) { ...@@ -39,10 +40,17 @@ int main(int argc, char** argv) {
sax::SaxParseInterface::parseStdin(tokens); sax::SaxParseInterface::parseStdin(tokens);
} }
   
if(algorithm.getValue() == "outgoing") if(algorithm.getValue() == "outgoing") {
alib::XmlDataFactory::toStdout(automaton::simplify::EpsilonRemoverOutgoing::remove(alib::XmlDataFactory::fromTokens<automaton::Automaton>(tokens))); alib::XmlDataFactory::toStdout(automaton::simplify::EpsilonRemoverOutgoing::remove(alib::XmlDataFactory::fromTokens<automaton::Automaton>(tokens)));
else if(algorithm.getValue() == "incoming" || algorithm.getValue() == "default") { } else if(algorithm.getValue() == "incoming") {
alib::XmlDataFactory::toStdout(automaton::simplify::EpsilonRemoverIncoming::remove(alib::XmlDataFactory::fromTokens<automaton::Automaton>(tokens))); alib::XmlDataFactory::toStdout(automaton::simplify::EpsilonRemoverIncoming::remove(alib::XmlDataFactory::fromTokens<automaton::Automaton>(tokens)));
} else if(algorithm.getValue() == "default") {
if(alib::XmlDataFactory::first<automaton::Automaton>(tokens))
alib::XmlDataFactory::toStdout(automaton::simplify::EpsilonRemoverIncoming::remove(alib::XmlDataFactory::fromTokens<automaton::Automaton>(tokens)));
else if(alib::XmlDataFactory::first<grammar::Grammar>(tokens))
alib::XmlDataFactory::toStdout(grammar::simplify::EpsilonRemover::remove(alib::XmlDataFactory::fromTokens<grammar::Grammar>(tokens)));
else
throw exception::AlibException("Invalid formalism");
} else { } else {
throw exception::AlibException("Invalid algorithm"); throw exception::AlibException("Invalid algorithm");
} }
......
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