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

    Type Alias SolverOptions

    Optional configuration settings of the numerical solver of an initial value problem (ODE).

    type SolverOptions = {
        maxIterations: number;
        maxTimeMs: number;
        method: string;
    }
    Index

    Properties

    maxIterations: number

    The maximum number of iterations allowed.

    maxTimeMs: number

    The maximum time in milliseconds allowed for the solver.

    method: string

    The name of the numerical method to use.