Skip to content

Commit

Permalink
\
Browse files Browse the repository at this point in the history
  • Loading branch information
EveCharbie committed Apr 2, 2024
1 parent b84b20c commit f0cdf56
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bioptim/gui/check_conditioning.py
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ def evaluate_hessian_objective(v, ocp):
ev_max = np.max(eigen_values)
ev_min = np.min(eigen_values)
if ev_min == 0:
condition_number = " /!\ min eigen value is 0"
condition_number = "/!\\ min eigen value is 0"
if ev_min != 0:
condition_number = np.abs(ev_max) / np.abs(ev_min)
convexity = (
Expand Down

0 comments on commit f0cdf56

Please sign in to comment.