You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
`integrate` has the form `integrate(y; kw...)` or `integrate(y, x; kw...)`, where `y` is the integrand and the optional `x` is the variable of integration. The keyword parameters are:
94
-
95
-
-`abstol` (default `1e-6`): the error tolerance to accept a solution.
96
-
-`symbolic` (default `true`): if true, pure symbolic integration is attempted first.
97
-
-`bypass` (default `false`): if true, the whole expression is considered at once and not per term.
98
-
-`num_steps` (default `2`): one plus the number of expanded basis to check (if `num_steps` is 1, only the main basis is checked).
99
-
-`num_trials` (default `5`): the number of attempts to solve the integration numerically for each basis set.
100
-
-`show_basis` (default `false`): print the basis set, useful for debugging. Only works if `verbose` is also set.
101
-
-`homotopy` (default: `true` as of version 0.7.0): uses the continuous Homotopy operators to generate the integration candidates.
102
-
-`verbose` (default `false`): if true, prints extra (and voluminous!) debugging information.
103
-
-`radius` (default `1.0`): the starting radius to generate random test points.
104
-
-`opt` (default `STLSQ(exp.(-10:1:0))`): the optimizer passed to `sparse_regression!`.
105
-
-`max_basis` (default `110`): the maximum number of expression in the basis.
106
-
-`complex_plane` (default `true`): random test points are generated on the complex plane (only over the real axis if `complex_plane` is `false`).
107
-
-`use_optim` (default `false`): use Optim.jl `minimize` function instead of the STLSQ algorithm (**experimental**)
0 commit comments