We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27be03d commit 0f77124Copy full SHA for 0f77124
test/test_layoutarray.jl
@@ -106,8 +106,8 @@ Base.copy(A::MyVector) = MyVector(copy(A.A))
106
@test_throws ErrorException qr!(A)
107
@test lu!(copy(A)).factors ≈ lu(A.A).factors
108
b = randn(5)
109
- @test A \ b == A.A \ b == A.A \ MyVector(b) == ldiv!(lu(A.A), copy(MyVector(b)))
110
- @test A \ b == ldiv!(lu(A), copy(MyVector(b))) == ldiv!(lu(A), copy(b))
+ @test A \ b == A.A \ b == A.A \ MyVector(b) == ldiv!(lu(A.A), copy(b))
+ @test A \ b == ldiv!(lu(A), copy(b))
111
@test lu(A).L == lu(A.A).L
112
@test lu(A).U == lu(A.A).U
113
@test lu(A).p == lu(A.A).p
0 commit comments