File tree Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Expand file tree Collapse file tree 1 file changed +17
-0
lines changed Original file line number Diff line number Diff line change @@ -957,6 +957,23 @@ Pkg.add("IRKGaussLegendre")
957
957
using IRKGaussLegendre
958
958
```
959
959
960
+ ` IRKGL16(;kwargs...) ` has the following arguments:
961
+
962
+ - second_order_ode (boolean):
963
+ - =false (default): for a ODEProblem type
964
+ - =true: for a second-order differential equation
965
+ - simd (boolean):
966
+ - =true: SIMD-vectorized implementation only available for Float32 or Float64 computations
967
+ - =false (default): generic implementation that can use with arbitrary Julia-defined number systems
968
+ - mstep: output saved at every 'mstep' steps. Default 1.
969
+ - initial_extrapolation: initialization method for stages.
970
+ - =false: simplest initialization
971
+ - =true (default): extrapolation from the stage values of previous step
972
+ - maxtrials: maximum number of attempts to accept adaptive step size
973
+ - threading
974
+ - =false (default): sequential execution of the numerical integration
975
+ - =true: computations using threads (shared memory multi-threading) for stage-wise parallelization
976
+
960
977
### SimpleDiffEq.jl
961
978
962
979
This setup provides access to simplified versions of a few ODE solvers. They
You can’t perform that action at this time.
0 commit comments