Home | History | Annotate | Download | only in script

Lines Matching defs:ShortestPath

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);
49 REGISTER_FST_OPERATION(ShortestPath, LogArc, ShortestPathArgs2);
50 REGISTER_FST_OPERATION(ShortestPath, Log64Arc, ShortestPathArgs2);