MCPcopy Create free account
hub / github.com/TheAlgorithms/Go / WeightedGraph

TypeAlias WeightedGraph

graph/floydwarshall.go:11–11  ·  view source on GitHub ↗

WeightedGraph defining matrix to use 2d array easier

Source from the content-addressed store, hash-verified

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

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected