We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d6825c7 commit 4b17bbcCopy full SHA for 4b17bbc
test/testsuite/projections.jl
@@ -1,6 +1,6 @@
1
using TestExtras
2
using MatrixAlgebraKit: ishermitian
3
-using LinearAlgebra: Diagonal, normalize!
+using LinearAlgebra: Diagonal, normalize
4
5
function test_projections(T::Type, sz; kwargs...)
6
summary_str = testargs_summary(T, sz)
@@ -44,7 +44,7 @@ function test_project_antihermitian(
44
end
45
46
# test approximate error calculation
47
- A = normalize!(A)
+ A = normalize(A)
48
Ah = project_hermitian(A)
49
Aa = project_antihermitian(A)
50
@@ -93,7 +93,7 @@ function test_project_hermitian(
93
94
95
96
97
98
99
0 commit comments