Home | History | Annotate | Download | only in fst

Lines Matching refs:order_

323         order_(0), state_(0) {
325 TopOrderVisitor<Arc> top_order_visitor(&order_, &acyclic);
331 state_.resize(order_.size(), kNoStateId);
338 order_(order), state_(order.size(), kNoStateId) {}
343 if (front_ > back_) front_ = back_ = order_[s];
344 else if (order_[s] > back_) back_ = order_[s];
345 else if (order_[s] < front_) front_ = order_[s];
346 state_[order_[s]] = s;
367 vector<StateId> order_;