Home | History | Annotate | Download | only in fst

Lines Matching refs:ipairs

50 // \param ipairs vector of input label pairs indicating old to new mapping
56 const vector<pair<typename A::Label, typename A::Label> >& ipairs,
65 for (size_t i = 0; i < ipairs.size(); ++i) {
66 input_map[ipairs[i].first] = ipairs[i].second;
144 vector<pair<Label, Label> > ipairs;
151 ipairs.push_back(make_pair(isymbol_val, new_isymbol_val));
171 Relabel(fst, ipairs, opairs);
213 const vector<pair<Label, Label> >& ipairs,
223 if (ipairs.size() > 0) {
224 for (size_t i = 0; i < ipairs.size(); ++i) {
225 input_map_[ipairs[i].first] = ipairs[i].second;
399 const vector<pair<Label, Label> >& ipairs,
401 : ImplToFst<Impl>(new Impl(fst, ipairs, opairs, RelabelFstOptions())) {}
404 const vector<pair<Label, Label> >& ipairs,
407 : ImplToFst<Impl>(new Impl(fst, ipairs, opairs, opts)) {}