Skip to content

Commit 8aaf075

Browse files
committed
test(core): remove isposdef and inv in default test_linearalgrbra_functions
1 parent 83689bb commit 8aaf075

File tree

1 file changed

+0
-2
lines changed

1 file changed

+0
-2
lines changed

test/runtests.jl

-2
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,9 @@ function test_linearalgrbra_functions(A::AbstractMatrix)
1414
isdiag => isdiag(A) == isdiag(matrix),
1515
ishermitian => ishermitian(A) == ishermitian(matrix),
1616
issymmetric => issymmetric(A) == issymmetric(matrix),
17-
isposdef => isposdef(A) == isposdef(matrix),
1817
adjoint => adjoint(A) adjoint(matrix),
1918
transpose => transpose(A) transpose(matrix),
2019
det => det(A) == det(matrix),
21-
inv => inv(A) inv(matrix),
2220
eigvals => eigvals(A) eigvals(matrix),
2321
])
2422

0 commit comments

Comments
 (0)