HomeSort by relevance Sort by last modified time
    Searched defs:SetFinal (Results 1 - 6 of 6) sorted by null

  /external/openfst/src/include/fst/
mutable-fst.h 54 virtual void SetFinal(StateId, Weight) = 0; // Set a state's final weight
264 virtual void SetFinal(StateId s, Weight w) {
266 GetImpl()->SetFinal(s, w);
edit-fst.h 169 Weight SetFinal(StateId s, Weight w, const WrappedFstT *wrapped) {
179 edits_.SetFinal(GetEditableInternalId(s, wrapped), w);
303 edits_.SetFinal(new_internal_id, wrapped->Final(s));
305 edits_.SetFinal(new_internal_id, final_weight_it->second);
518 void SetFinal(StateId s, Weight w) {
520 Weight old_weight = data_->SetFinal(s, w, wrapped_);
vector-fst.h 65 void SetFinal(StateId s, Weight w) { states_[s]->final = w; }
218 void SetFinal(StateId s, Weight w) {
220 BaseImpl::SetFinal(s, w);
307 BaseImpl::SetFinal(s, fst.Final(s));
cache.h 92 // SetFinal(), AddArc(), (or PushArc() and SetArcs()) to cache. Note
219 void SetFinal(StateId s, Weight w) {
  /external/srec/tools/thirdparty/OpenFst/fst/lib/
cache.h 49 // SetFinal(), AddArc(), and SetArcs() to cache. Note you must set the
164 void SetFinal(StateId s, Weight w) {
vector-fst.h 59 void SetFinal(StateId s, Weight w) { states_[s]->final = w; }
213 void SetFinal(StateId s, Weight w) {
217 BaseImpl::SetFinal(s, w);
334 BaseImpl::SetFinal(s, fst.Final(s));
579 virtual void SetFinal(StateId s, Weight w) {
581 impl_->SetFinal(s, w);

Completed in 134 milliseconds