highs-js API reference
    Preparing search index...

    Interface RawRuntimeApi

    Raw runtime operations. Structured arguments replace C pointers, but status codes are never converted to exceptions. JavaScript validation, disposal, callback reentrancy, allocation, and callback-thrown errors can still throw.

    interface RawRuntimeApi {
        createModel(): SymbolDisposable<RawModelApi>;
        lpCall(model: ModelData): RawResult<SolveOutput>;
        mipCall(model: ModelData): RawResult<MipSolveOutput>;
        qpCall(model: ModelData): RawResult<SolveOutput>;
        version(): HighsVersion;
    }
    Index