highs-js API reference
    Preparing search index...

    Interface HighsInfeasibleSolutionColumn

    Infeasible legacy column metadata.

    interface HighsInfeasibleSolutionColumn {
        Index: number;
        Lower: 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.

    Type: "Integer" | "Continuous"

    Lossy legacy classification: only native type code 1 is reported as Integer; semi-continuous, semi-integer, and implicit-integer codes are not distinguished by this compatibility result.

    Upper: number

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