Skip to content

Commit

Permalink
Decrease epsilons
Browse files Browse the repository at this point in the history
  • Loading branch information
simsurace authored Feb 10, 2024
1 parent 092bf04 commit 036a649
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/parameters_matrix.jl
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ using ParameterHandling: vec_to_tril, tril_to_vec
X.L .= 0 # zero the unconstrained value
@test isposdef(value(X))
@test X != positive_definite(X_mat)
@test positive_definite(X_mat, 1e-3) != positive_definite(X_mat, 1e-2)
@test positive_definite(X_mat, 1e-5) != positive_definite(X_mat, 1e-6)
@test_throws ArgumentError positive_definite(zeros(3, 3))
@test_throws ArgumentError positive_definite(X_mat, 0.0)
test_parameter_interface(X)
Expand Down

0 comments on commit 036a649

Please sign in to comment.