Skip to content

Commit bfb622d

Browse files
committed
Format again
1 parent 3c07024 commit bfb622d

File tree

2 files changed

+4
-3
lines changed

2 files changed

+4
-3
lines changed

src/tensors/factorizations/diagonal.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ function check_input(::typeof(eig_full!), t::DiagonalTensorMap, (D, V)::_T_DV,
114114

115115
# space checks
116116
@check_space D space(t)
117-
@check_space V space(t)
117+
@check_space V space(t)
118118

119119
return nothing
120120
end
@@ -130,7 +130,7 @@ function check_input(::typeof(eigh_full!), t::DiagonalTensorMap, (D, V)::_T_DV,
130130

131131
# space checks
132132
@check_space D space(t)
133-
@check_space V space(t)
133+
@check_space V space(t)
134134

135135
return nothing
136136
end

src/tensors/factorizations/implementations.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,8 @@ end
8080

8181
function rightorth!(t::AbstractTensorMap;
8282
alg::Union{LAPACK_HouseholderLQ,LAPACK_QRIteration,
83-
LAPACK_DivideAndConquer,DiagonalAlgorithm,PolarViaSVD,LQ,LQpos,RQ,RQpos,SVD,
83+
LAPACK_DivideAndConquer,DiagonalAlgorithm,PolarViaSVD,LQ,
84+
LQpos,RQ,RQpos,SVD,
8485
SDD,Polar,Nothing}=nothing, kwargs...)
8586
InnerProductStyle(t) === EuclideanInnerProduct() ||
8687
throw_invalid_innerproduct(:rightorth!)

0 commit comments

Comments
 (0)