fix: delete min function

pull/34423/head
komisan19 2 years ago
parent 039cced8ae
commit e3a9dce998

@ -58,13 +58,6 @@ func stronglyConnected(acct *sccAcct, g *Graph, v Vertex) int {
return minIdx
}
func min(a, b int) int {
if a <= b {
return a
}
return b
}
// sccAcct is used ot pass around accounting information for
// the StronglyConnectedComponents algorithm
type sccAcct struct {

Loading…
Cancel
Save