summaryrefslogtreecommitdiff
path: root/fast/main.cc
diff options
context:
space:
mode:
Diffstat (limited to 'fast/main.cc')
-rw-r--r--fast/main.cc27
1 files changed, 0 insertions, 27 deletions
diff --git a/fast/main.cc b/fast/main.cc
deleted file mode 100644
index 825ad59..0000000
--- a/fast/main.cc
+++ /dev/null
@@ -1,27 +0,0 @@
-#include "hypergraph.hh"
-#include <ctime>
-
-
-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<string> 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;
-}
-