highs-js API reference
    Preparing search index...

    Interface HighsLinearSolutionRow

    LP row result including shadow price and basis information.

    interface HighsLinearSolutionRow {
        Dual: number;
        Index: number;
        Lower: number;
        Name: string;
        Primal: number;
        Status: HighsBasisStatus;
        Upper: number;
    }

    Hierarchy (View Summary)

    Index
    Dual: number

    Row dual value (shadow price).

    Index: number

    Zero-based row or column index.

    Lower: number

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

    Name: string

    Row name copied from the parsed model.

    Primal: number

    Primal column value or row activity.

    Legacy basis label derived from native row basis status and bounds.

    Upper: number

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