summaryrefslogtreecommitdiff
path: root/fast/main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'fast/main.cc')
-rw-r--r--fast/main.cc10
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;
}