highs-js API reference
    Preparing search index...

    Interface MipSolveOutput

    Output of a successful-status stateless MIP call. Inspect modelStatus before using the primal arrays; a limit or infeasible result may have no incumbent. MIP duals and bases are intentionally absent.

    interface MipSolveOutput {
        modelStatus: ModelStatusCode;
        solution: { colValue: Float64Array; rowValue: Float64Array };
    }
    Index
    modelStatus: ModelStatusCode

    Final MIP model status.

    solution: { colValue: Float64Array; rowValue: Float64Array }

    Detached primal solution.

    Type Declaration

    • ReadonlycolValue: Float64Array

      Primal column values, length numCols.

    • ReadonlyrowValue: Float64Array

      Primal row activities, length numRows.