Skip to content

Commit

Permalink
src/sage/geometry/cone_critical_angles.py: more spaces around *
Browse files Browse the repository at this point in the history
  • Loading branch information
orlitzky committed May 4, 2024
1 parent 32e543a commit dff5441
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/sage/geometry/cone_critical_angles.py
Original file line number Diff line number Diff line change
Expand Up @@ -847,12 +847,12 @@ def check_gevp_feasibility(cos_theta, xi, eta, G_I, G_I_c_T,
v = H_J * eta_hat
rhs = v - cos_theta*G_I*xi_hat

if any(x < -epsilon for x in G_I_c_T*rhs):
if any(x < -epsilon for x in G_I_c_T * rhs):
return infeasible_result

u = G_I * xi_hat
rhs = u - cos_theta*H_J*eta_hat
if any(x < -epsilon for x in H_J_c_T*rhs):
if any(x < -epsilon for x in H_J_c_T * rhs):
return infeasible_result

return (True, u, v)
Expand Down

0 comments on commit dff5441

Please sign in to comment.