Home | History | Annotate | Download | only in fst

Lines Matching defs:heap_

218       : QueueBase<S>(SHORTEST_FIRST_QUEUE), heap_(comp) {}
220 StateId Head() const { return heap_.Top(); }
226 key_[s] = heap_.Insert(s);
228 heap_.Insert(s);
234 key_[heap_.Pop()] = kNoKey;
236 heap_.Pop();
245 heap_.Update(key_[s], s);
249 bool Empty() const { return heap_.Empty(); }
252 heap_.Clear();
257 Heap<S, C, false> heap_;