|
FreeLing
3.0
|
The class dependency_parser is just an abstract class generalizing any dependency parser. More...
#include <dependency_parser.h>


Public Member Functions | |
| dependency_parser () | |
| Constructor. | |
| virtual | ~dependency_parser () |
| virtual void | analyze (sentence &)=0 |
| analyze given sentence | |
| void | analyze (std::list< sentence > &) |
| analyze given sentences | |
| sentence | analyze (const sentence &) |
| analyze sentence, return analyzed copy | |
| std::list< sentence > | analyze (const std::list< sentence > &) |
| analyze sentences, return analyzed copy | |
The class dependency_parser is just an abstract class generalizing any dependency parser.
Constructor.
| virtual dependency_parser::~dependency_parser | ( | ) | [inline, virtual] |
| virtual void dependency_parser::analyze | ( | sentence & | ) | [pure virtual] |
| void dependency_parser::analyze | ( | std::list< sentence > & | ls | ) |
analyze given sentences
Disambiguate all words in given sentences.
Reimplemented from processor.
Reimplemented in dep_txala.
References processor::analyze().
| sentence dependency_parser::analyze | ( | const sentence & | s | ) |
analyze sentence, return analyzed copy
Disambiguate given sentence, return analyzed copy.
Reimplemented from processor.
Reimplemented in dep_txala.
References processor::analyze().
| std::list< sentence > dependency_parser::analyze | ( | const std::list< sentence > & | ls | ) |
analyze sentences, return analyzed copy
Disambiguate given sentences, return analyzed copy.
Reimplemented from processor.
Reimplemented in dep_txala.
References processor::analyze().
1.7.6.1