MCPcopy Create free account
hub / github.com/PrajaktaSathe/Java / AdjNode

Class AdjNode

Programs/Dijkstra.java:91–98  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

89}
90
91class AdjNode{
92 int source, dest, cost;
93 AdjNode(int source, int dest, int cost){
94 this.source = source;
95 this.dest = dest;
96 this.cost = cost;
97 }
98}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected