highs-js API reference
    Preparing search index...

    Interface ColumnData

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

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

    Objective coefficients, length count.

    count: number

    Number of represented columns.

    lower: Float64Array

    Lower bounds, length count.

    matrix: SparseMatrix

    Coefficients with numCols === count and rows matching the model.

    upper: Float64Array

    Upper bounds, length count.