From 129a22cfcc7651daa4b11ed52e7870249f6373a5 Mon Sep 17 00:00:00 2001 From: Patrick Simianer Date: Tue, 16 Sep 2014 10:23:14 +0100 Subject: spring cleaning --- src/fast_weaver.cc | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) create mode 100644 src/fast_weaver.cc (limited to 'src/fast_weaver.cc') diff --git a/src/fast_weaver.cc b/src/fast_weaver.cc new file mode 100644 index 0000000..4854476 --- /dev/null +++ b/src/fast_weaver.cc @@ -0,0 +1,26 @@ +#include "hypergraph.hh" +#include + +int +main(int argc, char** argv) +{ + Hg::Hypergraph hg; + G::Vocabulary y; + G::Grammar g; + Hg::io::read(hg, g.rules, y, argv[1]); + //Hg::io::manual(hg, g.rules); + clock_t begin = clock(); + Hg::Path p; + Hg::viterbi_path(hg, p); + vector s; + Hg::derive(p, p.back()->head, s); + for (auto it: s) + cout << it << " "; + cout << endl; + clock_t end = clock(); + double elapsed_secs = double(end - begin) / CLOCKS_PER_SEC; + cout << elapsed_secs << " s" << endl; + + return 0; +} + -- cgit v1.2.3