pub unsafe extern "C" fn Highs_getPrimalRay(
    highs: *const c_void,
    has_primal_ray: *mut HighsInt,
    primal_ray_value: *mut f64
) -> HighsInt
Expand description

Get an unbounded primal ray that is a certificate of dual infeasibility.

@param highs A pointer to the Highs instance. @param has_primal_ray A pointer to an int to store 1 if the primal ray exists. @param primal_ray_value An array of length [num_col] filled with the unbounded ray.

@returns A kHighsStatus constant indicating whether the call succeeded.