Home | History | Annotate | Download | only in lib

Lines Matching defs:order_

293         order_(0), state_(0) {
295 TopOrderVisitor<Arc> top_order_visitor(&order_, &acyclic);
299 state_.resize(order_.size(), kNoStateId);
306 order_(order), state_(order.size(), kNoStateId) {}
311 if (front_ > back_) front_ = back_ = order_[s];
312 else if (order_[s] > back_) back_ = order_[s];
313 else if (order_[s] < front_) front_ = order_[s];
314 state_[order_[s]] = s;
335 vector<StateId> order_;