graph: replace custom reverse logic with slices.Reverse

This commit is contained in:
Jonathan Bluett-Duncan
2024-02-03 16:20:43 +00:00
committed by Dan Kortschak
parent 1f5b2b5b54
commit b94e4828e9
12 changed files with 33 additions and 38 deletions

View File

@@ -8,6 +8,7 @@ import (
"fmt"
"math"
"reflect"
"slices"
"testing"
"golang.org/x/exp/rand"
@@ -181,7 +182,7 @@ func (p allShortest) allBetween(from, to int, seen []bool, path []graph.Node, pa
return paths
}
if !p.forward {
ordered.Reverse(path)
slices.Reverse(path)
}
return append(paths, path)
}