|
1 | 1 | module NonlinearSolveBase
|
2 | 2 |
|
| 3 | +using Compat: @compat |
| 4 | +using ConcreteStructs: @concrete |
| 5 | +using FastClosures: @closure |
| 6 | +using Preferences: @load_preference |
| 7 | + |
3 | 8 | using ADTypes: ADTypes, AbstractADType, AutoSparse, NoSparsityDetector,
|
4 | 9 | KnownJacobianSparsityDetector
|
5 | 10 | using Adapt: WrappedArray
|
6 | 11 | using ArrayInterface: ArrayInterface
|
7 |
| -using CommonSolve: CommonSolve, init |
8 |
| -using Compat: @compat |
9 |
| -using ConcreteStructs: @concrete |
10 | 12 | using DifferentiationInterface: DifferentiationInterface, Constant
|
| 13 | +using StaticArraysCore: StaticArray, SMatrix, SArray, MArray |
| 14 | + |
| 15 | +using CommonSolve: CommonSolve, init |
11 | 16 | using EnzymeCore: EnzymeCore
|
12 |
| -using FastClosures: @closure |
13 | 17 | using FunctionProperties: hasbranching
|
14 |
| -using LinearAlgebra: LinearAlgebra, Diagonal, norm, ldiv!, diagind |
15 |
| -using Markdown: @doc_str |
16 | 18 | using MaybeInplace: @bb
|
17 |
| -using Preferences: @load_preference |
18 |
| -using Printf: @printf |
19 | 19 | using RecursiveArrayTools: AbstractVectorOfArray, ArrayPartition
|
20 | 20 | using SciMLBase: SciMLBase, ReturnCode, AbstractODEIntegrator, AbstractNonlinearProblem,
|
21 | 21 | AbstractNonlinearAlgorithm, AbstractNonlinearFunction,
|
22 | 22 | NonlinearProblem, NonlinearLeastSquaresProblem, StandardNonlinearProblem,
|
23 | 23 | NonlinearFunction, NullParameters, NLStats, LinearProblem
|
24 | 24 | using SciMLJacobianOperators: JacobianOperator, StatefulJacobianOperator
|
25 | 25 | using SciMLOperators: AbstractSciMLOperator, IdentityOperator
|
26 |
| -using StaticArraysCore: StaticArray, SMatrix, SArray, MArray |
27 | 26 | using SymbolicIndexingInterface: SymbolicIndexingInterface
|
28 | 27 |
|
| 28 | +using LinearAlgebra: LinearAlgebra, Diagonal, norm, ldiv!, diagind |
| 29 | +using Markdown: @doc_str |
| 30 | +using Printf: @printf |
| 31 | + |
29 | 32 | const DI = DifferentiationInterface
|
30 | 33 | const SII = SymbolicIndexingInterface
|
31 | 34 |
|
|
0 commit comments