Skip to content

Commit 2290121

Browse files
Fix NonlinearSolveFirstOrder type definition order
Fixes #576 due to ensuring the type being constructed by the specific first order cases is defined before the usage.
1 parent 111b606 commit 2290121

File tree

1 file changed

+1
-4
lines changed

1 file changed

+1
-4
lines changed

lib/NonlinearSolveFirstOrder/src/NonlinearSolveFirstOrder.jl

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,16 +31,13 @@ using SciMLJacobianOperators: VecJacOperator, JacVecOperator, StatefulJacobianOp
3131
using FiniteDiff: FiniteDiff # Default Finite Difference Method
3232
using ForwardDiff: ForwardDiff, Dual # Default Forward Mode AD
3333

34+
include("solve.jl")
3435
include("raphson.jl")
3536
include("gauss_newton.jl")
3637
include("levenberg_marquardt.jl")
3738
include("trust_region.jl")
3839
include("pseudo_transient.jl")
39-
4040
include("poly_algs.jl")
41-
42-
include("solve.jl")
43-
4441
include("forward_diff.jl")
4542

4643
@setup_workload begin

0 commit comments

Comments
 (0)