MCPcopy Create free account
hub / github.com/Linloir/GraphBuilder / BFS

Method BFS

graph_implement.h:208–208  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

206 void DFS(MyGraphicsVexItem *strtVex, bool generateForest = false){DFS(GetIdOf(strtVex), generateForest);}
207 void BFS(int strtID, bool generateForest = false);
208 void BFS(MyGraphicsVexItem *strtVex, bool generateForest = false){BFS(GetIdOf(strtVex), generateForest);}
209 void Dijkstra(int strtID);
210 void Dijkstra(MyGraphicsVexItem *strtVex){Dijkstra(GetIdOf(strtVex));}
211 ALGraph* ConvertToAL();

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected