Returns only one real root between the bounds specified by the user.
function cubicRoots_SingleReal input Real a; input Real b; input Real c; input Real d; input Real u_min "Lower bound of search interval"; input Real u_max "Upper bound of search interval"; output Real u "Value of real root"; end cubicRoots_SingleReal;