11using Documenter, DocumenterCitations, DocumenterInterLinks
2- using NonlinearSolve, SimpleNonlinearSolve, Sundials, SteadyStateDiffEq, SciMLBase,
3- BracketingNonlinearSolve, NonlinearSolveBase
4- using SciMLJacobianOperators
52import DiffEqBase
63
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+ )
1121
1222include (" pages.jl" )
1323
@@ -20,20 +30,29 @@ interlinks = InterLinks(
2030
2131makedocs (;
2232 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+ ],
2742 clean = true ,
2843 doctest = false ,
2944 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+ ],
3249 checkdocs = :exports ,
3350 warnonly = [:missing_docs ],
3451 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+ ),
3756 pages
3857)
3958
0 commit comments