diff options
author | Patrick Simianer <p@simianer.de> | 2014-07-20 15:08:12 +0200 |
---|---|---|
committer | Patrick Simianer <p@simianer.de> | 2014-07-20 15:08:12 +0200 |
commit | 08e9a6f71c80fc7327d1758312b40bd5ba763dc9 (patch) | |
tree | 93a027bbb3e34fd60cc8e5d030a443a7f665389f /fast/main.cc | |
parent | f219bab21c07d02e7e54d557e23387bd93c9ce5f (diff) |
a lot
Diffstat (limited to 'fast/main.cc')
-rw-r--r-- | fast/main.cc | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/fast/main.cc b/fast/main.cc index a7b5837..9c64976 100644 --- a/fast/main.cc +++ b/fast/main.cc @@ -7,6 +7,14 @@ main(int argc, char** argv) Hg::Hypergraph hg; //Hg::io::manual(hg); Hg::io::read(hg, argv[1]); - //Hg::viterbi(hg); + /*cout << "---" << endl; + for (auto it = hg.nodes.begin(); it!=hg.nodes.end(); it++) + cout << **it << endl; + for (auto it = hg.edges.begin(); it!=hg.edges.end(); it++) + cout << **it << endl; + cout << "---" << endl;*/ + Hg::viterbi(hg); + + return 0; } |