// Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. // // Copyright 2005-2010 Google, Inc. // Author: jpr@google.com (Jake Ratkiewicz) #ifndef FST_SCRIPT_REPLACE_H_ #define FST_SCRIPT_REPLACE_H_ #include using std::pair; using std::make_pair; #include using std::vector; #include #include #include namespace fst { namespace script { typedef args::Package > &, MutableFstClass *, const int64, bool> ReplaceArgs; template void Replace(ReplaceArgs *args) { // Now that we know the arc type, we construct a vector of // pair that the real Replace will use const vector >& untyped_tuples = args->arg1; vector *> > fst_tuples( untyped_tuples.size()); for (unsigned i = 0; i < untyped_tuples.size(); ++i) { fst_tuples[i].first = untyped_tuples[i].first; // convert label fst_tuples[i].second = untyped_tuples[i].second->GetFst(); } MutableFst *ofst = args->arg2->GetMutableFst(); Replace(fst_tuples, ofst, args->arg3, args->arg4); } void Replace(const vector > &tuples, MutableFstClass *ofst, const int64 &root, bool epsilon_on_replace = false); } // namespace script } // namespace fst #endif // FST_SCRIPT_REPLACE_H_