From 8aaf075114a7e64b0c2983abc817429382633e60 Mon Sep 17 00:00:00 2001 From: Andy Zhang <37402126+AnzhiZhang@users.noreply.github.com> Date: Wed, 7 Aug 2024 18:23:16 +0100 Subject: [PATCH] test(core): remove isposdef and inv in default test_linearalgrbra_functions --- test/runtests.jl | 2 -- 1 file changed, 2 deletions(-) diff --git a/test/runtests.jl b/test/runtests.jl index e2cccab..7624044 100644 --- a/test/runtests.jl +++ b/test/runtests.jl @@ -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), ])