-
Notifications
You must be signed in to change notification settings - Fork 52
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Keep sparse solvers docs as before (#552)
* Mark sparse linalg API as non-canonical * Add signatures * Include the sparse solvers API in a separate file for now since it conflicts with the one in julia stdlib.
- Loading branch information
1 parent
95fd7ff
commit 55976a6
Showing
3 changed files
with
26 additions
and
26 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
# Sparse Linear Algebra (API) | ||
|
||
```@meta | ||
DocTestSetup = :(using LinearAlgebra, SparseArrays) | ||
``` | ||
|
||
```@docs; canonical=false | ||
SparseArrays.CHOLMOD.cholesky | ||
SparseArrays.CHOLMOD.cholesky! | ||
SparseArrays.CHOLMOD.lowrankdowndate | ||
SparseArrays.CHOLMOD.lowrankdowndate! | ||
SparseArrays.CHOLMOD.lowrankupdowndate! | ||
SparseArrays.CHOLMOD.ldlt | ||
SparseArrays.SPQR.qr | ||
SparseArrays.UMFPACK.lu | ||
``` | ||
|
||
```@meta | ||
DocTestSetup = nothing | ||
``` |