summaryrefslogtreecommitdiff
path: root/fast/main.cc
blob: 2a8676be9e4bd9c87d9409e2f4f785daae476424 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#include "hypergraph.hh"


int
main(int argc, char** argv)
{
  Hg::Hypergraph hg;
  Hg::io::read(hg, argv[1]);
  Hg::viterbi(hg);

  return 0;
}