File tree Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Expand file tree Collapse file tree 1 file changed +6
-2
lines changed Original file line number Diff line number Diff line change @@ -6,10 +6,14 @@ using MatrixAlgebraKit: MatrixAlgebraKit
66# https://github.com/QuantumKitHub/MatrixAlgebraKit.jl/blob/v0.6.0/src/common/matrixproperties.jl#L40-L64
77# which isn't well supported right now for block sparse matrices.
88# TODO : Improve `diagview` for block sparse matrices and remove these definitions.
9- function MatrixAlgebraKit. is_left_isometric (A:: AbstractBlockSparseMatrix ; isapprox_kwargs... )
9+ function MatrixAlgebraKit. is_left_isometric (
10+ A:: AnyAbstractBlockSparseMatrix ; isapprox_kwargs...
11+ )
1012 return isapprox (A' * A, LinearAlgebra. I; isapprox_kwargs... )
1113end
12- function MatrixAlgebraKit. is_right_isometric (A:: AbstractBlockSparseMatrix ; isapprox_kwargs... )
14+ function MatrixAlgebraKit. is_right_isometric (
15+ A:: AnyAbstractBlockSparseMatrix ; isapprox_kwargs...
16+ )
1317 return MatrixAlgebraKit. is_left_isometric (A' ; isapprox_kwargs... )
1418end
1519
You can’t perform that action at this time.
0 commit comments