highs-js API reference
    Preparing search index...

    Interface HighsMixedIntegerLinearSolutionRow

    MIP row result; only bounds, index, and primal activity are available.

    interface HighsMixedIntegerLinearSolutionRow {
        Index: number;
        Lower: number;
        Primal: number;
        Upper: number;
    }

    Hierarchy (View Summary)

    Index
    Index: number

    Zero-based row or column index.

    Lower: number

    Lower bound; the legacy runtime uses -Infinity when unbounded below.

    Primal: number

    Primal column value or row activity.

    Upper: number

    Upper bound; the legacy runtime uses Infinity when unbounded above.