Skip to content

Commit 1b547ca

Browse files
committed
wrapper names
1 parent bb88fb8 commit 1b547ca

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

src/LinearSolve.jl

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,15 @@ using Reexport
1818
abstract type SciMLLinearSolveAlgorithm <: SciMLBase.AbstractLinearAlgorithm end
1919

2020
include("common.jl")
21+
include("default.jl")
2122
include("factorization.jl")
22-
include("krylov.jl")
23+
include("wrappers.jl")
2324

25+
export DefaultLinSolve
2426
export LUFactorization, SVDFactorization, QRFactorization
25-
export KrylovJL, IterativeSolversJL, KrylovKitJL
27+
export KrylovJL #, KrylovJL_CG, KrylovJL_GMRES, KrylovJL_BICGSTAB
28+
export IterativeSolversJL #, IterativeSolversJL_CG, IterativeSolversJL_GMRES,
29+
#IterativeSolversJL_BICGSTAB
30+
export KrylovKitJL #, KrylovKitJL_CG, KrylovKitJL_GMRES, KrylovKitJL_BICGSTAB
2631

2732
end

0 commit comments

Comments
 (0)