We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8c00b6f + 96a8cc6 commit 993a90aCopy full SHA for 993a90a
lib/OrdinaryDiffEqFIRK/src/OrdinaryDiffEqFIRK.jl
@@ -13,10 +13,11 @@ import OrdinaryDiffEq: alg_order, calculate_residuals!,
13
NLStatus, qmax_default, alg_adaptive_order, DEFAULT_PRECS,
14
UJacobianWrapper, build_J_W, build_jac_config, UDerivativeWrapper,
15
Convergence, calc_J!, dolinsolve, FastConvergence, calc_J,
16
- mul!, PredictiveController
+ stepsize_controller!, islinearfunction, step_accept_controller!, step_reject_controller!,
17
+ PredictiveController
18
using MuladdMacro, DiffEqBase, RecursiveArrayTools
19
using SciMLOperators: AbstractSciMLOperator
-using LinearAlgebra: I, UniformScaling
20
+using LinearAlgebra: I, UniformScaling, mul!, lu
21
import LinearSolve
22
import FastBroadcast: @..
23
include("algorithms.jl")
@@ -27,6 +28,6 @@ include("firk_tableaus.jl")
27
28
include("firk_perform_step.jl")
29
include("integrator_interface.jl")
30
-export RadauIIA3, RadauIIA5
31
+export RadauIIA3, RadauIIA5, RadauIIA7
32
33
end
0 commit comments