aboutsummaryrefslogtreecommitdiff
path: root/src/extensions/far/farscript.cc
diff options
context:
space:
mode:
authorAlexander Gutkin <agutkin@google.com>2013-02-28 00:24:20 +0000
committerAlexander Gutkin <agutkin@google.com>2013-02-28 00:24:20 +0000
commit5b6dc79427b8f7eeb6a7ff68034ab8548ce670ea (patch)
tree19e17fc79b8873e66f211276d4dd169c480cede1 /src/extensions/far/farscript.cc
parent3da1eb108d36da35333b2d655202791af854996b (diff)
downloadopenfst-5b6dc79427b8f7eeb6a7ff68034ab8548ce670ea.tar.gz
Bumped OpenFST implementation to openfst-1.3.3-CL41851770.
Updated OpenFST implementation to the most recent version used by Greco3 (corresponds to nlp::fst exported at Perforce CL 41851770). In particular this version has an improved PDT support. Change-Id: I5aadfc962297eef73922c67e7d57866f11ee7d81
Diffstat (limited to 'src/extensions/far/farscript.cc')
-rw-r--r--src/extensions/far/farscript.cc10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/extensions/far/farscript.cc b/src/extensions/far/farscript.cc
index bc4ad0e..76da273 100644
--- a/src/extensions/far/farscript.cc
+++ b/src/extensions/far/farscript.cc
@@ -76,10 +76,14 @@ bool FarEqual(const string &filename1, const string &filename2,
void FarExtract(const vector<string> &ifilenames,
const string &arc_type,
- int32 generate_filenames, const string &begin_key,
- const string &end_key, const string &filename_prefix,
+ int32 generate_filenames,
+ const string &keys,
+ const string &key_separator,
+ const string &range_delimiter,
+ const string &filename_prefix,
const string &filename_suffix) {
- FarExtractArgs args(ifilenames, generate_filenames, begin_key, end_key,
+ FarExtractArgs args(ifilenames, generate_filenames, keys,
+ key_separator, range_delimiter,
filename_prefix, filename_suffix);
Apply<Operation<FarExtractArgs> >("FarExtract", arc_type, &args);