pub unsafe extern "C" fn Highs_scaleRow(
    highs: *mut c_void,
    row: HighsInt,
    scaleval: f64
) -> HighsInt
Expand description

Scale a row by a constant.

If scaleval < 0, the row bounds are flipped.

@param highs a pointer to the Highs instance @param row the index of the row to scale @param scaleval the value by which to scale the row

@returns a kHighsStatus constant indicating whether the call succeeded