-
-
Notifications
You must be signed in to change notification settings - Fork 5.5k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Remove string "Array" funnybusiness #23583
Conversation
test/linalg/lu.jl
Outdated
@test norm(a*(lua\c) - c, 1) < ε*κ*n # c is a vector | ||
@test norm(a'*(lua'\c) - c, 1) < ε*κ*n # c is a vector | ||
@test norm(a*(lua\cc) - cc, 1) < ε*κ*n # c is a vector | ||
@test norm(a'*(lua'\cc) - cc, 1) < ε*κ*n # c is a vector |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
# cc is a vector
and above.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
oh good call, thanks <3
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wow, that was some serious fishiness.
@andreasnoack thoughts? |
else | ||
a = view(ainit, 1:size(ainit, 1), 1:size(ainit, 2)) | ||
end | ||
@test_throws(ArgumentError,triu(a,8)) |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Accidentally removed this test?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The Return Of The Test!
Timeout on bsd and libgit2 on circle. Linalg tests passed on all workers. |
LGTM |
I think this looks much nicer and the tests seem to pass.
I didn't get all of them but I did get most.Now got 'em all!