summaryrefslogtreecommitdiff
path: root/src/bottom_up_parser.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/bottom_up_parser.h')
-rw-r--r--src/bottom_up_parser.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/src/bottom_up_parser.h b/src/bottom_up_parser.h
deleted file mode 100644
index 546bfb54..00000000
--- a/src/bottom_up_parser.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef _BOTTOM_UP_PARSER_H_
-#define _BOTTOM_UP_PARSER_H_
-
-#include <vector>
-#include <string>
-
-#include "lattice.h"
-#include "grammar.h"
-
-class Hypergraph;
-
-class ExhaustiveBottomUpParser {
- public:
- ExhaustiveBottomUpParser(const std::string& goal_sym,
- const std::vector<GrammarPtr>& grammars);
-
- // returns true if goal reached spanning the full input
- // forest contains the full (i.e., unpruned) parse forest
- bool Parse(const Lattice& input,
- Hypergraph* forest) const;
-
- private:
- const std::string goal_sym_;
- const std::vector<GrammarPtr> grammars_;
-};
-
-#endif