Lines Matching refs:Distance
448 Weight Distance(StateId s) const;
551 << reverse_shortest_path_->GetShortestPathData().Distance(s); in DistanceToDest()
552 return reverse_shortest_path_->GetShortestPathData().Distance(s); in DistanceToDest()
572 typename A::Weight PrunedExpand<A>::Distance(StateId s) const { in Distance() function
632 Weight nd = Times(Distance(s), arc.weight); in Relax()
633 if (less_(nd, Distance(arc.nextstate))) { in Relax()
639 VLOG(2) << "Relax: " << s << ", d[s] = " << Distance(s) << ", to " in Relax()
640 << arc.nextstate << ", d[ns] = " << Distance(arc.nextstate) in Relax()
682 Weight w = Times(Distance(s), Times(arc.weight, fd)); in PruneArc()
717 if ((final == Weight::Zero()) || less_(limit_, Times(Distance(s), final))) in ProcFinal()
798 Weight nd = Times(Distance(s), arc.weight); in ProcOpenParen()
799 if(less_(nd, Distance(arc.nextstate))) in ProcOpenParen()
815 Weight w = Times(Distance(s), in ProcCloseParen()
905 VLOG(2) << "d[" << s << "] = " << Distance(s) in Expand()