Remove old condition for cylindrical mesh

This commit is contained in:
Patrick Shriwise 2023-03-27 15:09:15 -05:00
parent 6910e36572
commit 160360a2a6

View file

@ -1091,7 +1091,7 @@ double CylindricalMesh::find_r_crossing(
if (std::abs(c) <= 1e-10)
return INFTY;
if (-p - D > l && std::abs(c) > 1e-10)
if (-p - D > l)
return -p - D;
if (-p + D > l)
return -p + D;