1
1
using Documenter, DocumenterCitations, DocumenterInterLinks
2
- using NonlinearSolve, SimpleNonlinearSolve, Sundials, SteadyStateDiffEq, SciMLBase,
3
- BracketingNonlinearSolve, NonlinearSolveBase
4
- using SciMLJacobianOperators
5
2
import DiffEqBase
6
3
7
- cp (joinpath (@__DIR__ , " Manifest.toml" ),
8
- joinpath (@__DIR__ , " src/assets/Manifest.toml" ), force = true )
9
- cp (joinpath (@__DIR__ , " Project.toml" ),
10
- joinpath (@__DIR__ , " src/assets/Project.toml" ), force = true )
4
+ using Sundials
5
+ using NonlinearSolveBase, SciMLBase, DiffEqBase
6
+ using SimpleNonlinearSolve, BracketingNonlinearSolve
7
+ using NonlinearSolveFirstOrder, NonlinearSolveQuasiNewton, NonlinearSolveSpectralMethods
8
+ using SciMLJacobianOperators
9
+ using NonlinearSolve, SteadyStateDiffEq
10
+
11
+ cp (
12
+ joinpath (@__DIR__ , " Manifest.toml" ),
13
+ joinpath (@__DIR__ , " src/assets/Manifest.toml" );
14
+ force = true
15
+ )
16
+ cp (
17
+ joinpath (@__DIR__ , " Project.toml" ),
18
+ joinpath (@__DIR__ , " src/assets/Project.toml" );
19
+ force = true
20
+ )
11
21
12
22
include (" pages.jl" )
13
23
@@ -20,20 +30,29 @@ interlinks = InterLinks(
20
30
21
31
makedocs (;
22
32
sitename = " NonlinearSolve.jl" ,
23
- authors = " Chris Rackauckas" ,
24
- modules = [NonlinearSolve, SimpleNonlinearSolve, SteadyStateDiffEq, DiffEqBase,
25
- Sundials, NonlinearSolveBase, SciMLBase, SciMLJacobianOperators,
26
- BracketingNonlinearSolve],
33
+ authors = " SciML" ,
34
+ modules = [
35
+ NonlinearSolveBase, SciMLBase, DiffEqBase,
36
+ SimpleNonlinearSolve, BracketingNonlinearSolve,
37
+ NonlinearSolveFirstOrder, NonlinearSolveQuasiNewton, NonlinearSolveSpectralMethods,
38
+ Sundials,
39
+ SciMLJacobianOperators,
40
+ NonlinearSolve, SteadyStateDiffEq
41
+ ],
27
42
clean = true ,
28
43
doctest = false ,
29
44
linkcheck = true ,
30
- linkcheck_ignore = [" https://twitter.com/ChrisRackauckas/status/1544743542094020615" ,
31
- " https://link.springer.com/article/10.1007/s40096-020-00339-4" ],
45
+ linkcheck_ignore = [
46
+ " https://twitter.com/ChrisRackauckas/status/1544743542094020615" ,
47
+ " https://link.springer.com/article/10.1007/s40096-020-00339-4"
48
+ ],
32
49
checkdocs = :exports ,
33
50
warnonly = [:missing_docs ],
34
51
plugins = [bib, interlinks],
35
- format = Documenter. HTML (assets = [" assets/favicon.ico" , " assets/citations.css" ],
36
- canonical = " https://docs.sciml.ai/NonlinearSolve/stable/" ),
52
+ format = Documenter. HTML (
53
+ assets = [" assets/favicon.ico" , " assets/citations.css" ],
54
+ canonical = " https://docs.sciml.ai/NonlinearSolve/stable/"
55
+ ),
37
56
pages
38
57
)
39
58
0 commit comments