Skip to content

Commit

Permalink
test(core): remove isposdef and inv in default test_linearalgrbra_fun…
Browse files Browse the repository at this point in the history
…ctions
  • Loading branch information
AnzhiZhang committed Aug 7, 2024
1 parent 83689bb commit 8aaf075
Showing 1 changed file with 0 additions and 2 deletions.
2 changes: 0 additions & 2 deletions test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -14,11 +14,9 @@ function test_linearalgrbra_functions(A::AbstractMatrix)
isdiag => isdiag(A) == isdiag(matrix),
ishermitian => ishermitian(A) == ishermitian(matrix),
issymmetric => issymmetric(A) == issymmetric(matrix),
isposdef => isposdef(A) == isposdef(matrix),
adjoint => adjoint(A) adjoint(matrix),
transpose => transpose(A) transpose(matrix),
det => det(A) == det(matrix),
inv => inv(A) inv(matrix),
eigvals => eigvals(A) eigvals(matrix),
])

Expand Down

0 comments on commit 8aaf075

Please sign in to comment.