File tree Expand file tree Collapse file tree 2 files changed +29
-5
lines changed Expand file tree Collapse file tree 2 files changed +29
-5
lines changed Original file line number Diff line number Diff line change 1
1
# Put in a separate page so it can be used by SciMLDocs.jl
2
2
3
3
pages = [" index.md" ,
4
- " Tutorials" => Any[" tutorials/linear.md"
4
+ " Tutorials" => Any[" tutorials/linear.md"
5
5
" tutorials/caching_interface.md" ],
6
- " Basics" => Any[" basics/LinearProblem.md" ,
6
+ " Basics" => Any[" basics/LinearProblem.md" ,
7
7
" basics/common_solver_opts.md" ,
8
8
" basics/CachingAPI.md" ,
9
9
" basics/Preconditioners.md" ,
10
10
" basics/FAQ.md" ],
11
- " Solvers" => Any[" solvers/solvers.md" ],
12
- " Advanced" => Any[" advanced/developing.md"
11
+ " Solvers" => Any[" solvers/solvers.md" ],
12
+ " Advanced" => Any[" advanced/developing.md"
13
13
" advanced/custom.md" ],
14
14
]
Original file line number Diff line number Diff line change @@ -7,9 +7,33 @@ control algorithm swapping. It also interfaces with the
7
7
[ ModelingToolkit.jl] ( https://mtk.sciml.ai/dev/ ) world of symbolic modeling to
8
8
allow for automatically generating high-performance code.
9
9
10
+ Performance is key: the current methods are made to be highly performant on
11
+ scalar and statically sized small problems, with options for large-scale systems.
12
+ If you run into any performance issues, please file an issue.
13
+
14
+ ## Installation
15
+
16
+ To install LinearSolve.jl, use the Julia package manager:
17
+
18
+ ``` julia
19
+ using Pkg
20
+ Pkg. add (" LinearSolve" )
21
+ ```
22
+
23
+ ## Contributing
24
+
25
+ - Please refer to the
26
+ [ SciML ColPrac: Contributor's Guide on Collaborative Practices for Community Packages] ( https://github.com/SciML/ColPrac/blob/master/README.md )
27
+ for guidance on PRs, issues, and other matters relating to contributing to ModelingToolkit.
28
+ - There are a few community forums:
29
+ - the #diffeq-bridged channel in the [ Julia Slack] ( https://julialang.org/slack/ )
30
+ - [ JuliaDiffEq] ( https://gitter.im/JuliaDiffEq/Lobby ) on Gitter
31
+ - on the [ Julia Discourse forums] ( https://discourse.julialang.org )
32
+ - see also [ SciML Community page] ( https://sciml.ai/community/ )
33
+
10
34
## Roadmap
11
35
12
36
Wrappers for every linear solver in the Julia language is on the roadmap. If
13
37
there are any important ones that are missing that you would like to see added,
14
38
please open an issue. The current algorithms should support automatic differentiation.
15
- Pre-defined preconditioners would be a welcome addition.
39
+ Pre-defined preconditioners would be a welcome addition.
You can’t perform that action at this time.
0 commit comments