remove unnecessary assignment

This commit is contained in:
onyx-and-iris 2024-12-23 23:17:10 +00:00
parent 1f033ea3a0
commit 13a92834a1

View File

@ -72,9 +72,7 @@ func next(
}
for _, v := range P.List() {
nextR := append(R, v)
next(nextR, P.Intersection(networks[v]), X.Intersection(networks[v]), cliquesChan, networks)
next(append(R, v), P.Intersection(networks[v]), X.Intersection(networks[v]), cliquesChan, networks)
P.Remove(v)
X.Add(v)