Skip to content

Commit 29e47e4

Browse files
Merge pull request #92 from SciML/ap/fix_docs
Fix docs
2 parents 3ffec08 + e81eca9 commit 29e47e4

File tree

3 files changed

+6
-5
lines changed

3 files changed

+6
-5
lines changed

docs/make.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ using Documenter, DocumenterCitations, DeepEquilibriumNetworks
33
cp("./docs/Manifest.toml", "./docs/src/assets/Manifest.toml"; force=true)
44
cp("./docs/Project.toml", "./docs/src/assets/Project.toml"; force=true)
55

6-
bib = CitationBibliography(joinpath(@__DIR__, "ref.bib"); sorting=:nyt)
6+
bib = CitationBibliography(joinpath(@__DIR__, "ref.bib"); style=:authoryear)
77

88
include("pages.jl")
99

@@ -26,6 +26,6 @@ makedocs(bib;
2626
format=Documenter.HTML(;
2727
assets=["assets/favicon.ico"],
2828
canonical="https://docs.sciml.ai/DeepEquilibriumNetworks/stable/"),
29-
pages=pages)
29+
pages)
3030

3131
deploydocs(; repo="github.com/SciML/DeepEquilibriumNetworks.jl.git", push_preview=true)

experiments/Project.toml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,4 +40,5 @@ ZygoteRules = "700de1a5-db45-46bc-99cf-38207098b444"
4040
[compat]
4141
ComponentArrays = "0.13.8"
4242
DeepEquilibriumNetworks = "0.2"
43+
Lux = "0.4"
4344
MLUtils = "0.2.10"

src/solve.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ abstract type AbstractDEQSolver <: AbstractSteadyStateAlgorithm end
55
abstol=1.0f-8, reltol=1.0f-6, abstol_termination=abstol,
66
reltol_termination=reltol, tspan=Inf32, kwargs...)
77
8-
Solver for Continuous DEQ Problem ([pal2022mixing](@cite)). Effectively a wrapper around
8+
Solver for Continuous DEQ Problem [pal2022mixing](@cite). Effectively a wrapper around
99
`DynamicSS` with more sensible defaults for DEQs.
1010
1111
## Arguments
@@ -49,12 +49,12 @@ end
4949
termination_condition=NLSolveTerminationCondition(NLSolveTerminationMode.RelSafe;
5050
abstol=1.0f-8, reltol=1.0f-6))
5151
52-
Solver for Discrete DEQ Problem ([baideep2019](@cite)). Similar to `SSrootfind` but provides
52+
Solver for Discrete DEQ Problem [baideep2019](@cite). Similar to `SSrootfind` but provides
5353
more flexibility needed for solving DEQ problems.
5454
5555
## Arguments
5656
57-
- `alg`: Algorithm to solve the Nonlinear Problem. (Default: [`LBroyden`](@ref))
57+
- `alg`: Algorithm to solve the Nonlinear Problem. (Default: `LBroyden`)
5858
5959
See also: [`ContinuousDEQSolver`](@ref)
6060
"""

0 commit comments

Comments
 (0)