highs-js API reference
    Preparing search index...

    Interface RowData

    Detached selected-row data in ascending model-index order. The matrix is CSR with numRows === count and one column per current model column.

    interface RowData {
        count: number;
        lower: Float64Array;
        matrix: SparseMatrix;
        upper: Float64Array;
    }
    Index
    count: number

    Number of represented rows.

    lower: Float64Array

    Lower bounds, length count.

    matrix: SparseMatrix

    Coefficients with numRows === count and columns matching the model.

    upper: Float64Array

    Upper bounds, length count.