diff-grok - v1.0.9
    Preparing search index...

    Type Alias IVP2WebWorker

    Represents a fully parsed simulation prepared for execution in Web Workers.

    type IVP2WebWorker = {
        deqsCount: number;
        funcMainBody: string;
        paramNames: string[];
        solverOpts: Partial<SolverOptions>;
        tolerance: number;
    }
    Index

    Properties

    deqsCount: number

    The number of differential equations in the system.

    funcMainBody: string

    The main body of the function implementing the ODE system.

    paramNames: string[]

    Names of the model parameters.

    solverOpts: Partial<SolverOptions>

    Configuration options for the numerical solver (partial).

    tolerance: number

    Tolerance for the numerical solver.