ModErn Text Analysis
META Enumerates Textual Applications
debinarizer.h
Go to the documentation of this file.
1 
9 #ifndef META_PARSER_DEBINARIZER_H_
10 #define META_PARSER_DEBINARIZER_H_
11 
12 #include "meta.h"
14 
15 namespace meta
16 {
17 namespace parser
18 {
19 
26 {
27  public:
28  std::unique_ptr<node> operator()(const leaf_node&) override;
29  std::unique_ptr<node> operator()(const internal_node&) override;
30 };
31 }
32 }
33 
34 #endif
Contains top-level namespace documentation for the META toolkit.
An internal node in a parse tree.
Definition: internal_node.h:28
std::unique_ptr< node > operator()(const leaf_node &) override
Definition: debinarizer.cpp:19
The ModErn Text Analysis toolkit is a suite of natural language processing, classification, information retreival, data mining, and other applications of text processing.
Definition: analyzer.h:24
Abstract base class for tree transformers.
Definition: tree_transformer.h:25
A tree transformer that converts binarized trees back into n-ary trees.
Definition: debinarizer.h:25
A leaf node (pre-terminal) in a parse tree.
Definition: leaf_node.h:24