File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -87,14 +87,14 @@ function LinearAlgebra.isposdef!(t::AbstractTensorMap)
8787end
8888
8989# TODO : tolerances are per-block, not global or weighted - does that matter?
90- function MatrixAlgebraKit . is_left_isometry (t:: AbstractTensorMap ; kwargs... )
90+ function MAK . is_left_isometric (t:: AbstractTensorMap ; kwargs... )
9191 domain (t) ≾ codomain (t) || return false
92- f ((c, b)) = MatrixAlgebraKit . is_left_isometry (b; kwargs... )
92+ f ((c, b)) = MAK . is_left_isometric (b; kwargs... )
9393 return all (f, blocks (t))
9494end
95- function MatrixAlgebraKit . is_right_isometry (t:: AbstractTensorMap ; kwargs... )
95+ function MAK . is_right_isometric (t:: AbstractTensorMap ; kwargs... )
9696 domain (t) ≿ codomain (t) || return false
97- f ((c, b)) = MatrixAlgebraKit . is_right_isometry (b; kwargs... )
97+ f ((c, b)) = MAK . is_right_isometric (b; kwargs... )
9898 return all (f, blocks (t))
9999end
100100
You can’t perform that action at this time.
0 commit comments