all: run gofmt and generate all packages

Changes made in dsp/fourier/internal/fftpack break the formatting used
there, so these are reverted. There will be complaints in CI.

[git-generate]
gofmt -w .
go generate gonum.org/v1/gonum/blas
go generate gonum.org/v1/gonum/blas/gonum
go generate gonum.org/v1/gonum/unit
go generate gonum.org/v1/gonum/unit/constant
go generate gonum.org/v1/gonum/graph/formats/dot
go generate gonum.org/v1/gonum/graph/formats/rdf
go generate gonum.org/v1/gonum/stat/card

git checkout -- dsp/fourier/internal/fftpack
This commit is contained in:
Dan Kortschak
2022-08-05 20:57:59 +09:30
parent fee5019b48
commit 5f0141ca4c
308 changed files with 5004 additions and 3064 deletions
+7 -8
View File
@@ -237,14 +237,13 @@ func (q Query) Not(p Query) Query {
// is wanted, fn should return its input and false when the partial
// traversal returns an empty result.
//
// result := start.Repeat(func(q rdf.Query) (rdf.Query, bool) {
// r := q.Out(condition)
// if r.Len() == 0 {
// return q, false
// }
// return r, true
// }).Result()
//
// result := start.Repeat(func(q rdf.Query) (rdf.Query, bool) {
// r := q.Out(condition)
// if r.Len() == 0 {
// return q, false
// }
// return r, true
// }).Result()
func (q Query) Repeat(fn func(Query) (q Query, ok bool)) Query {
for {
var ok bool