Skip to content

Commit 065d548

Browse files
committed
Formatter
1 parent 5d54a4d commit 065d548

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

test/test_svd.jl

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,9 @@ using Test: @inferred, @testset, @test
77

88
function test_svd(a, usv)
99
U, S, V = usv
10-
return (U * diagonal(S) * V' a) && (U' * U LinearAlgebra.I) && (V' * V LinearAlgebra.I)
10+
return (U * diagonal(S) * V' a) &&
11+
(U' * U LinearAlgebra.I) &&
12+
(V' * V LinearAlgebra.I)
1113
end
1214

1315
# regular matrix

0 commit comments

Comments
 (0)