highs-js API reference
    Preparing search index...

    Interface HighsMixedIntegerLinearSolutionColumn

    MIP column result; dual and basis values are not defined for MIP solutions.

    interface HighsMixedIntegerLinearSolutionColumn {
        Index: number;
        Lower: number;
        Name: string;
        Primal: number;
        Type: "Integer" | "Continuous";
        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.

    Name: string

    Column name copied from the parsed model.

    Primal: number

    Primal column value or row activity.

    Type: "Integer" | "Continuous"

    Lossy compatibility classification; see HighsInfeasibleSolutionColumn.Type.

    Upper: number

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