Searched refs:less_ (Results 1 – 6 of 6) sorted by relevance
/external/openfst/src/include/fst/ |
D | queue.h | 283 : weights_(weights), less_(less) {} in StateWeightCompare() 286 return less_(weights_[x], weights_[y]); in operator() 291 L less_; variable 304 ShortestFirstQueue<S, C>(C(distance, less_)) {} in NaturalShortestFirstQueue() 307 NaturalLess<W> less_; 754 : weights_(weights), less_(less), estimate_(estimate) {} in AStarWeightCompare() 759 return less_(wx, wy); in operator() 764 L less_; variable 779 ShortestFirstQueue<S, C>(C(distance, less_, estimate)) {} in NaturalAStarQueue() 782 NaturalLess<W> less_; [all …]
|
D | shortest-path.h | 232 return less_(wy, wx) || ApproxEqual(wx, wy, delta_); in operator() 234 return less_(wy, wx) && !ApproxEqual(wx, wy, delta_); in operator() 236 return less_(wy, wx); in operator() 245 NaturalLess<Weight> less_; variable
|
D | prune.h | 79 return less_(wx, wy); in operator() 85 NaturalLess<Weight> less_; variable
|
/external/srec/tools/thirdparty/OpenFst/fst/lib/ |
D | shortest-path.h | 187 return less_(wy, wx) || ApproxEqual(wx, wy, delta_); in operator() 189 return less_(wy, wx) && !ApproxEqual(wx, wy, delta_); in operator() 191 return less_(wy, wx); in operator() 200 NaturalLess<Weight> less_; variable
|
D | queue.h | 251 : weights_(weights), less_(less) {} in StateWeightCompare() 254 return less_((*weights_)[x], (*weights_)[y]); in operator() 259 L less_; variable 272 ShortestFirstQueue<S, C>(C(distance, less_)) {} in NaturalShortestFirstQueue() 275 NaturalLess<W> less_;
|
/external/openfst/src/include/fst/extensions/pdt/ |
D | expand.h | 412 return less_(w1, w2); in operator() 428 NaturalLess<Weight> less_; variable 507 NaturalLess<Weight> less_; variable 633 if (less_(nd, Distance(arc.nextstate))) { in Relax() 637 if (less_(fd, FinalDistance(arc.nextstate))) in Relax() 683 return less_(limit_, w); in PruneArc() 717 if ((final == Weight::Zero()) || less_(limit_, Times(Distance(s), final))) in ProcFinal() 799 if(less_(nd, Distance(arc.nextstate))) in ProcOpenParen() 804 if (less_(fd, FinalDistance(arc.nextstate))) in ProcOpenParen() 817 if (less_(limit_, w)) in ProcCloseParen()
|