Skip to content

Commit 27e9470

Browse files
committed
more cleanup
1 parent f31fae4 commit 27e9470

File tree

2 files changed

+1
-7
lines changed

2 files changed

+1
-7
lines changed

src/tensors/factorizations/factorizations.jl

Lines changed: 0 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -54,12 +54,6 @@ function isisometry(t::AbstractTensorMap, (p₁, p₂)::Index2Tuple)
5454
return isisometry(t)
5555
end
5656

57-
# Orthogonal factorizations (mutation for recycling memory):
58-
# only possible if scalar type is floating point
59-
# only correct if Euclidean inner product
60-
#------------------------------------------------------------------------------------------
61-
const RealOrComplexFloat = Union{AbstractFloat,Complex{<:AbstractFloat}}
62-
6357
#------------------------------#
6458
# LinearAlgebra overloads
6559
#------------------------------#

test/factorizations.jl

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -230,7 +230,7 @@ for V in spacelist
230230
t2 = (t + t')
231231
D, V = eigen(t2)
232232
@test isisometry(V)
233-
D̃, Ṽ = @constinferred eigh(t2)
233+
D̃, Ṽ = @constinferred eigh_full(t2)
234234
@test D
235235
@test V
236236
λ = minimum(minimum(real(LinearAlgebra.diag(b)))

0 commit comments

Comments
 (0)