highs-js API reference
    Preparing search index...

    Interface HighsLinearSolutionColumn

    LP column result including dual and basis information.

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

    Hierarchy (View Summary)

    Index
    Dual: number

    Reduced cost of the column.

    Index: number

    Zero-based row or column index.

    Lower: number

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

    Name: string

    Column name copied from the parsed model.

    Primal: number

    Primal column value or row activity.

    Legacy basis label derived from native basis status and bounds.

    Upper: number

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