Imported Upstream version 1.6.6
[platform/upstream/openfst.git] / src / bin / fstrmepsilon.cc
1 // See www.openfst.org for extensive documentation on this weighted
2 // finite-state transducer library.
3
4 #include <fst/flags.h>
5 #include <fst/fst.h>
6 #include <fst/shortest-distance.h>
7 #include <fst/weight.h>
8
9 DEFINE_bool(connect, true, "Trim output");
10 DEFINE_double(delta, fst::kShortestDelta, "Comparison/quantization delta");
11 DEFINE_int64(nstate, fst::kNoStateId, "State number threshold");
12 DEFINE_string(queue_type, "auto",
13               "Queue type: one of: \"auto\", "
14               "\"fifo\", \"lifo\", \"shortest\", \"state\", \"top\"");
15 DEFINE_string(weight, "", "Weight threshold");
16
17 int fstrmepsilon_main(int argc, char **argv);
18
19 int main(int argc, char **argv) { return fstrmepsilon_main(argc, argv); }