Skip to content
This repository has been archived by the owner on Apr 26, 2019. It is now read-only.

Commit

Permalink
topo: drop blank range variable assignment
Browse files Browse the repository at this point in the history
This was only in place to stop go1.3 complaining. We no longer support
go1.3 for gonum/graph, so remove this.
  • Loading branch information
kortschak committed Oct 8, 2015
1 parent bb4861f commit ea73c0e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion topo/bron_kerbosch.go
Expand Up @@ -49,7 +49,7 @@ func VertexOrdering(g graph.Undirected) (order []graph.Node, cores [][]graph.Nod
k := 0
// Repeat n times:
s := []int{0}
for _ = range nodes { // TODO(kortschak): Remove blank assignment when go1.3.3 is no longer supported.
for range nodes {
// Scan the array cells D[0], D[1], ... until
// finding an i for which D[i] is nonempty.
var (
Expand Down

0 comments on commit ea73c0e

Please sign in to comment.