highs-js API reference
    Preparing search index...

    Interface SolveOutput

    Output of a successful-status stateless LP/QP call. Always inspect modelStatus: array presence alone does not guarantee a feasible primal, valid dual, or valid basis. All arrays are JavaScript-owned copies.

    interface SolveOutput {
        basis: Basis;
        modelStatus: ModelStatusCode;
        solution: Solution;
    }
    Index
    basis: Basis

    Final simplex basis where available.

    modelStatus: ModelStatusCode

    Final model status, independent of the enclosing call status.

    solution: Solution

    Dense primal/dual solution buffers.