OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:SearchState
(Results
1 - 2
of
2
) sorted by null
/external/openfst/src/include/fst/extensions/pdt/
shortest-path.h
53
// (1) By
SearchState
: This is a usual node in a shortest path tree but:
74
struct
SearchState
{
75
SearchState
() : state(kNoStateId), start(kNoStateId) {}
77
SearchState
(StateId s, StateId t) : state(s), start(t) {}
79
bool operator==(const
SearchState
&s) const {
119
SearchState
parent; // Parent state in shortest path tree
143
state_ =
SearchState
(kNoStateId, kNoStateId);
148
Weight Distance(
SearchState
s) const {
158
SearchState
Parent(
SearchState
s) const
[
all
...]
expand.h
549
typename SP::
SearchState
s(source + 1, dest + 1);
[
all
...]
Completed in 3294 milliseconds