WeightedGraph defining matrix to use 2d array easier
| 9 | |
| 10 | // WeightedGraph defining matrix to use 2d array easier |
| 11 | type WeightedGraph [][]float64 |
| 12 | |
| 13 | // Defining maximum value. If two vertices share this value, it means they are not connected |
| 14 | var Inf = math.Inf(1) |
nothing calls this directly
no outgoing calls
no test coverage detected