OptionalconstraintTolerance for checking constraint satisfaction c(p, x) = 0. If ||c(p, x)|| exceeds this value, a warning will be issued. Default: 1e-6
OptionaldcdpAnalytical partial derivative of constraint function with respect to parameters. If provided, this will be used instead of numerical differentiation. Returns a Matrix of size (constraintCount × parameterCount).
OptionaldcdxAnalytical partial derivative of constraint function with respect to states. If provided, this will be used instead of numerical differentiation. Returns a Matrix of size (constraintCount × stateCount).
The adjoint method supports both square and non-square constraint Jacobians:
Note: Non-square (or ill-conditioned) Jacobians can be numerically sensitive. Consider scaling/normalizing your states and constraints if you see instability.
OptionaldfdpAnalytical partial derivative of cost function with respect to parameters. If provided, this will be used instead of numerical differentiation. Function signature: (p: Float64Array, x: Float64Array) => Float64Array
OptionaldfdxAnalytical partial derivative of cost function with respect to states. If provided, this will be used instead of numerical differentiation. Function signature: (p: Float64Array, x: Float64Array) => Float64Array
OptionallogLog level for detailed logging output. Controls which log messages are displayed:
If verbose is true and logLevel is not specified, logLevel defaults to INFO. If both logLevel and verbose are specified, logLevel takes precedence. Default: undefined (no logging)
OptionalmaxMaximum number of iterations before stopping. Default: 1000
OptionalonCallback function called at each iteration for progress monitoring. Useful for debugging and monitoring convergence.
OptionalstepStep size (learning rate) for gradient descent. If not provided, line search will be used to determine step size. Default: undefined (use line search)
OptionalstepStep size for numerical differentiation with respect to parameters. Default: 1e-6
OptionalstepStep size for numerical differentiation with respect to states. Default: 1e-6
OptionaltoleranceTolerance for convergence check (gradient norm, step size, etc.). Default: 1e-6
OptionaluseUse line search to determine optimal step size. Default: true
OptionalverboseEnable verbose logging for debugging. When true, detailed information is logged to console. Default: false
Options for adjoint gradient descent algorithm.