You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Please answer these questions before submitting your issue. Thanks!
What version of Go are you using (go version)?
go version devel +93098de
What operating system and processor architecture are you using (go env)?
GOARCH="amd64"
GOOS="linux"
What did you do?
If possible, provide a recipe for reproducing the error.
A complete runnable program is good.
A link on play.golang.org is best.
go get -u github.com/gonum/matrix/mat64
go test -a -run DenseOverlaps github.com/gonum/matrix/mat64 # unsafe dependency
go test -a -tags appengine -run DenseOverlaps github.com/gonum/matrix/mat64 # no unsafe dependency
What did you expect to see?
Both test invocations pass. This is the behaviour with go1.6
Please answer these questions before submitting your issue. Thanks!
go version
)?go version devel +93098de
go env
)?GOARCH="amd64"
GOOS="linux"
If possible, provide a recipe for reproducing the error.
A complete runnable program is good.
A link on play.golang.org is best.
Both test invocations pass. This is the behaviour with go1.6
Both invocations fail.
The change in behaviour was bisected to a9407b5.
The now failing code calculates relative address offsets between two []float64 elements (either with unsafe or reflect) to identify matrix overlaps.
The text was updated successfully, but these errors were encountered: