pub unsafe extern "C" fn Highs_getRowByName(
    highs: *const c_void,
    name: *const c_char,
    row: *mut HighsInt
) -> HighsInt
Expand description

Get the index of a row from its name.

If multiple rows have the same name, or if no row exists with name, this function returns kHighsStatusError.

@param name A pointer of the name of the row to query. @param row A pointer in which to store the index of the row

@returns A kHighsStatus constant indicating whether the call succeeded.