OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:ShortestPath
(Results
1 - 5
of
5
) sorted by null
/external/openfst/src/script/
shortest-path.cc
24
void
ShortestPath
(const FstClass &ifst, MutableFstClass *ofst,
27
if (!ArcTypesMatch(ifst, *ofst, "
ShortestPath
")) return;
30
Apply<Operation<ShortestPathArgs1> >("
ShortestPath
", ifst.ArcType(), &args);
33
void
ShortestPath
(const FstClass &ifst, MutableFstClass *ofst,
36
if (!ArcTypesMatch(ifst, *ofst, "
ShortestPath
")) return;
40
Apply<Operation<ShortestPathArgs2> >("
ShortestPath
", ifst.ArcType(), &args);
44
REGISTER_FST_OPERATION(
ShortestPath
, StdArc, ShortestPathArgs1);
45
REGISTER_FST_OPERATION(
ShortestPath
, LogArc, ShortestPathArgs1);
46
REGISTER_FST_OPERATION(
ShortestPath
, Log64Arc, ShortestPathArgs1);
48
REGISTER_FST_OPERATION(
ShortestPath
, StdArc, ShortestPathArgs2)
[
all
...]
/external/openfst/src/include/fst/script/
shortest-path.h
57
void
ShortestPath
(ShortestPathArgs1 *args) {
78
ShortestPath
(ifst, ofst, &weights, spopts);
90
ShortestPath
(ifst, ofst, &weights, spopts);
102
ShortestPath
(ifst, ofst, &weights, spopts);
114
ShortestPath
(ifst, ofst, &weights, spopts);
126
ShortestPath
(ifst, ofst, &weights, spopts);
138
ShortestPath
(ifst, ofst, &weights, spopts);
160
void
ShortestPath
(ShortestPathArgs2 *args) {
166
ShortestPath
(ifst, ofst, args->arg3, args->arg4, args->arg5,
172
void
ShortestPath
(const FstClass &ifst, MutableFstClass *ofst
[
all
...]
/external/compiler-rt/lib/sanitizer_common/tests/
sanitizer_bvgraph_test.cc
266
void
ShortestPath
() {
298
TEST(BVGraph,
ShortestPath
) {
299
ShortestPath
<BV1>();
300
ShortestPath
<BV2>();
301
ShortestPath
<BV3>();
302
ShortestPath
<BV4>();
/external/openfst/src/include/fst/
shortest-path.h
67
// '
ShortestPath
' below with n=1. 'ofst' contains the shortest path in
106
FSTERROR() << "SingleShortestPath: for nshortest > 1, use
ShortestPath
"
413
void
ShortestPath
(const Fst<Arc> &ifst, MutableFst<Arc> *ofst,
427
FSTERROR() << "
ShortestPath
: n-shortest: Weight needs to have the "
484
void
ShortestPath
(const Fst<Arc> &ifst, MutableFst<Arc> *ofst,
496
ShortestPath
(ifst, ofst, &distance, opts);
/external/openfst/src/include/fst/extensions/pdt/
shortest-path.h
424
void
ShortestPath
(MutableFst<Arc> *ofst) {
776
void
ShortestPath
(const Fst<Arc> &ifst,
782
psp.
ShortestPath
(ofst);
786
void
ShortestPath
(const Fst<Arc> &ifst,
793
psp.
ShortestPath
(ofst);
Completed in 781 milliseconds