• Home
  • Raw
  • Download

Lines Matching full:queue

71       typedef AutoQueue<StateId> Queue;  in ShortestPath()  typedef
72 Queue *queue = QueueConstructor<Queue, Arc, in ShortestPath() local
74 fst::ShortestPathOptions<Arc, Queue, ArcFilter> spopts( in ShortestPath()
75 queue, ArcFilter(), opts.nshortest, opts.unique, in ShortestPath()
79 delete queue; in ShortestPath() local
83 typedef FifoQueue<StateId> Queue; in ShortestPath() typedef
84 Queue *queue = QueueConstructor<Queue, Arc, in ShortestPath() local
86 fst::ShortestPathOptions<Arc, Queue, ArcFilter> spopts( in ShortestPath()
87 queue, ArcFilter(), opts.nshortest, opts.unique, in ShortestPath()
91 delete queue; in ShortestPath() local
95 typedef LifoQueue<StateId> Queue; in ShortestPath() typedef
96 Queue *queue = QueueConstructor<Queue, Arc, in ShortestPath() local
98 fst::ShortestPathOptions<Arc, Queue, ArcFilter> spopts( in ShortestPath()
99 queue, ArcFilter(), opts.nshortest, opts.unique, in ShortestPath()
103 delete queue; in ShortestPath() local
107 typedef NaturalShortestFirstQueue<StateId, Weight> Queue; in ShortestPath() typedef
108 Queue *queue = QueueConstructor<Queue, Arc, in ShortestPath() local
110 fst::ShortestPathOptions<Arc, Queue, ArcFilter> spopts( in ShortestPath()
111 queue, ArcFilter(), opts.nshortest, opts.unique, in ShortestPath()
115 delete queue; in ShortestPath() local
119 typedef StateOrderQueue<StateId> Queue; in ShortestPath() typedef
120 Queue *queue = QueueConstructor<Queue, Arc, in ShortestPath() local
122 fst::ShortestPathOptions<Arc, Queue, ArcFilter> spopts( in ShortestPath()
123 queue, ArcFilter(), opts.nshortest, opts.unique, in ShortestPath()
127 delete queue; in ShortestPath() local
131 typedef TopOrderQueue<StateId> Queue; in ShortestPath() typedef
132 Queue *queue = QueueConstructor<Queue, Arc, in ShortestPath() local
134 fst::ShortestPathOptions<Arc, Queue, ArcFilter> spopts( in ShortestPath()
135 queue, ArcFilter(), opts.nshortest, opts.unique, in ShortestPath()
139 delete queue; in ShortestPath() local
143 FSTERROR() << "Unknown queue type: " << opts.queue_type; in ShortestPath()