morfeusz_generator.cpp
1.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
* File: morfeusz_generator.cpp
* Author: mlenart
*
* Created on 21 styczeń 2014, 12:02
*/
#include <cstdlib>
#include <iostream>
#include <vector>
#include "morfeusz2.h"
#include "cli/cli.hpp"
using namespace std;
using namespace morfeusz;
int main(int argc, const char** argv) {
cerr << "Morfeusz generator, version: " << Morfeusz::getVersion() << endl;
Morfeusz* morfeusz;
try {
ez::ezOptionParser& opt = *getOptions(argc, argv, GENERATOR);
morfeusz = initializeMorfeusz(opt, GENERATOR);
delete &opt;
}
catch (const std::exception& ex) {
cerr << ex.what() << endl;
exit(1);
}
string line;
vector<MorphInterpretation> res;
try {
while (getline(cin, line)) {
// printf("%s\n", line.c_str());
res.clear();
morfeusz->generate(line, res);
printMorphResults(*morfeusz, res, false);
}
}
catch (const std::exception& ex) {
cerr << "Failed to perform morphosyntactic synthesis: " << ex.what() << endl;
exit(1);
}
printf("\n");
return 0;
}