a6c10d4dd6c1eb10466b6aea4a36e7f8346968e1
[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/weight.h>
7
8 DEFINE_bool(connect, true, "Trim output");
9 DEFINE_double(delta, fst::kDelta, "Comparison/quantization delta");
10 DEFINE_int64(nstate, fst::kNoStateId, "State number threshold");
11 DEFINE_string(queue_type, "auto",
12               "Queue type: one of: \"auto\", "
13               "\"fifo\", \"lifo\", \"shortest\", \"state\", \"top\"");
14 DEFINE_string(weight, "", "Weight threshold");
15
16 int fstrmepsilon_main(int argc, char **argv);
17
18 int main(int argc, char **argv) { return fstrmepsilon_main(argc, argv); }