Skip to content

Commit 9b806a2

Browse files
author
Documenter.jl
committed
build based on 88355ea
1 parent 8f42946 commit 9b806a2

12 files changed

Lines changed: 52 additions & 52 deletions

File tree

dev/.documenter-siteinfo.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
{"documenter":{"documenter_version":"1.17.0","generation_timestamp":"2026-04-16T08:43:23","julia_version":"1.12.6"}}
1+
{"documenter":{"documenter_version":"1.17.0","generation_timestamp":"2026-04-30T18:25:11","julia_version":"1.12.6"}}

dev/assets/Manifest.toml

Lines changed: 10 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -125,9 +125,9 @@ version = "1.7.0"
125125

126126
[[deps.Expat_jll]]
127127
deps = ["Artifacts", "JLLWrappers", "Libdl"]
128-
git-tree-sha1 = "27af30de8b5445644e8ffe3bcb0d72049c089cf1"
128+
git-tree-sha1 = "8f05e9a2e7c2e3eb524102bb2926c5743c07fbe1"
129129
uuid = "2e619515-83b5-522b-bb60-26c02a35a201"
130-
version = "2.7.3+0"
130+
version = "2.8.0+0"
131131

132132
[[deps.FileWatching]]
133133
uuid = "7b1f6079-737a-58dc-b8bc-7a2ca5c1b5ee"
@@ -170,9 +170,9 @@ version = "3.7.0+0"
170170

171171
[[deps.Git_jll]]
172172
deps = ["Artifacts", "Expat_jll", "JLLWrappers", "LibCURL_jll", "Libdl", "Libiconv_jll", "OpenSSL_jll", "PCRE2_jll", "Zlib_jll"]
173-
git-tree-sha1 = "dc34a3e3d96b4ed305b641e626dc14c12b7824b8"
173+
git-tree-sha1 = "0dd4cfb426924210c8f42742751cbde74b27bfa3"
174174
uuid = "f8c6e375-362e-5223-8a59-34ff63f689eb"
175-
version = "2.53.0+0"
175+
version = "2.54.0+0"
176176

177177
[[deps.IOCapture]]
178178
deps = ["Logging", "Random"]
@@ -193,9 +193,9 @@ version = "1.7.1"
193193

194194
[[deps.JSON]]
195195
deps = ["Dates", "Logging", "Parsers", "PrecompileTools", "StructUtils", "UUIDs", "Unicode"]
196-
git-tree-sha1 = "67c6f1f085cb2671c93fe34244c9cccde30f7a26"
196+
git-tree-sha1 = "fe23330af47b8ab4e135b2ff65f7398c3a2bfc65"
197197
uuid = "682c06a0-de6a-54ab-a142-c8b1cf79cde6"
198-
version = "1.5.0"
198+
version = "1.5.2"
199199

200200
[deps.JSON.extensions]
201201
JSONArrowExt = ["ArrowTypes"]
@@ -304,9 +304,9 @@ version = "10.44.0+1"
304304

305305
[[deps.Parsers]]
306306
deps = ["Dates", "PrecompileTools", "UUIDs"]
307-
git-tree-sha1 = "7d2f8f21da5db6a806faf7b9b292296da42b2810"
307+
git-tree-sha1 = "5d5e0a78e971354b1c7bff0655d11fdc1b0e12c8"
308308
uuid = "69de0a69-1ddd-5017-9359-2bf0b02dc9f0"
309-
version = "2.8.3"
309+
version = "2.8.4"
310310

311311
[[deps.Pkg]]
312312
deps = ["Artifacts", "Dates", "Downloads", "FileWatching", "LibGit2", "Libdl", "Logging", "Markdown", "Printf", "Random", "SHA", "TOML", "Tar", "UUIDs", "p7zip_jll"]
@@ -381,9 +381,9 @@ version = "1.4.4"
381381

382382
[[deps.StructUtils]]
383383
deps = ["Dates", "UUIDs"]
384-
git-tree-sha1 = "aab80fbf866600f3299dd7f6656d80e7be177cfe"
384+
git-tree-sha1 = "dd974aefe288ef2898733aecf40858dc86742d74"
385385
uuid = "ec057cc2-7a8d-4b58-b3b3-92acb9f63b42"
386-
version = "2.7.2"
386+
version = "2.8.1"
387387

388388
[deps.StructUtils.extensions]
389389
StructUtilsMeasurementsExt = ["Measurements"]

dev/derivatives/index.html

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -4,31 +4,31 @@
44
x :: T,
55
fdtype :: Type{T1} = Val{:central},
66
returntype :: Type{T2} = eltype(x),
7-
f_x :: Union{Nothing,T} = nothing)</code></pre><p>Single-point derivative of scalar-&gt;scalar maps.</p></div><a class="docs-sourcelink" target="_blank" href="https://github.com/JuliaDiff/FiniteDiff.jl/blob/ff4e72e2c68702f70eda183a2eff082d64208b99/src/derivatives.jl#L1-L10">source</a></section><section><div><pre><code class="language-julia hljs">FiniteDiff.finite_difference_derivative(
7+
f_x :: Union{Nothing,T} = nothing)</code></pre><p>Single-point derivative of scalar-&gt;scalar maps.</p></div><a class="docs-sourcelink" target="_blank" href="https://github.com/JuliaDiff/FiniteDiff.jl/blob/88355ead740f10f28e3186e9fd3301bbb89f0729/src/derivatives.jl#L1-L10">source</a></section><section><div><pre><code class="language-julia hljs">FiniteDiff.finite_difference_derivative(
88
f,
99
x :: AbstractArray{&lt;:Number},
1010
fdtype :: Type{T1} = Val{:central},
1111
returntype :: Type{T2} = eltype(x), # return type of f
1212
fx :: Union{Nothing,AbstractArray{&lt;:Number}} = nothing,
1313
epsilon :: Union{Nothing,AbstractArray{&lt;:Real}} = nothing;
14-
[epsilon_factor])</code></pre><p>Compute the derivative <code>df</code> of a scalar-valued map <code>f</code> at a collection of points <code>x</code>.</p><p>Cache-less.</p></div><a class="docs-sourcelink" target="_blank" href="https://github.com/JuliaDiff/FiniteDiff.jl/blob/ff4e72e2c68702f70eda183a2eff082d64208b99/src/derivatives.jl#L90-L103">source</a></section></details></article><article><details class="docstring" open="true"><summary id="FiniteDiff.finite_difference_derivative!"><a class="docstring-binding" href="#FiniteDiff.finite_difference_derivative!"><code>FiniteDiff.finite_difference_derivative!</code></a><span class="docstring-category">Function</span></summary><section><div><pre><code class="language-julia hljs">FiniteDiff.finite_difference_derivative!(
14+
[epsilon_factor])</code></pre><p>Compute the derivative <code>df</code> of a scalar-valued map <code>f</code> at a collection of points <code>x</code>.</p><p>Cache-less.</p></div><a class="docs-sourcelink" target="_blank" href="https://github.com/JuliaDiff/FiniteDiff.jl/blob/88355ead740f10f28e3186e9fd3301bbb89f0729/src/derivatives.jl#L90-L103">source</a></section></details></article><article><details class="docstring" open="true"><summary id="FiniteDiff.finite_difference_derivative!"><a class="docstring-binding" href="#FiniteDiff.finite_difference_derivative!"><code>FiniteDiff.finite_difference_derivative!</code></a><span class="docstring-category">Function</span></summary><section><div><pre><code class="language-julia hljs">FiniteDiff.finite_difference_derivative!(
1515
df :: AbstractArray{&lt;:Number},
1616
f,
1717
x :: AbstractArray{&lt;:Number},
1818
fdtype :: Type{T1} = Val{:central},
1919
returntype :: Type{T2} = eltype(x),
2020
fx :: Union{Nothing,AbstractArray{&lt;:Number}} = nothing,
2121
epsilon :: Union{Nothing,AbstractArray{&lt;:Real}} = nothing;
22-
[epsilon_factor])</code></pre><p>Compute the derivative <code>df</code> of a scalar-valued map <code>f</code> at a collection of points <code>x</code>.</p><p>Cache-less but non-allocating if <code>fx</code> and <code>epsilon</code> are supplied (<code>fx</code> must be <code>f(x)</code>).</p></div><a class="docs-sourcelink" target="_blank" href="https://github.com/JuliaDiff/FiniteDiff.jl/blob/ff4e72e2c68702f70eda183a2eff082d64208b99/src/derivatives.jl#L118-L132">source</a></section><section><div><pre><code class="language-julia hljs">FiniteDiff.finite_difference_derivative!(
22+
[epsilon_factor])</code></pre><p>Compute the derivative <code>df</code> of a scalar-valued map <code>f</code> at a collection of points <code>x</code>.</p><p>Cache-less but non-allocating if <code>fx</code> and <code>epsilon</code> are supplied (<code>fx</code> must be <code>f(x)</code>).</p></div><a class="docs-sourcelink" target="_blank" href="https://github.com/JuliaDiff/FiniteDiff.jl/blob/88355ead740f10f28e3186e9fd3301bbb89f0729/src/derivatives.jl#L118-L132">source</a></section><section><div><pre><code class="language-julia hljs">FiniteDiff.finite_difference_derivative!(
2323
df :: AbstractArray{&lt;:Number},
2424
f,
2525
x :: AbstractArray{&lt;:Number},
2626
cache :: DerivativeCache{T1,T2,fdtype,returntype};
2727
relstep = default_relstep(fdtype, eltype(x)),
2828
absstep = relstep,
29-
dir = true)</code></pre><p>Compute the derivative <code>df</code> of a scalar-valued map <code>f</code> at a collection of points <code>x</code>.</p><p>Cached.</p></div><a class="docs-sourcelink" target="_blank" href="https://github.com/JuliaDiff/FiniteDiff.jl/blob/ff4e72e2c68702f70eda183a2eff082d64208b99/src/derivatives.jl#L148-L161">source</a></section></details></article><h2 id="Cache"><a class="docs-heading-anchor" href="#Cache">Cache</a><a id="Cache-1"></a><a class="docs-heading-anchor-permalink" href="#Cache" title="Permalink"></a></h2><article><details class="docstring" open="true"><summary id="FiniteDiff.DerivativeCache"><a class="docstring-binding" href="#FiniteDiff.DerivativeCache"><code>FiniteDiff.DerivativeCache</code></a><span class="docstring-category">Type</span></summary><section><div><pre><code class="language-julia hljs">FiniteDiff.DerivativeCache(
29+
dir = true)</code></pre><p>Compute the derivative <code>df</code> of a scalar-valued map <code>f</code> at a collection of points <code>x</code>.</p><p>Cached.</p></div><a class="docs-sourcelink" target="_blank" href="https://github.com/JuliaDiff/FiniteDiff.jl/blob/88355ead740f10f28e3186e9fd3301bbb89f0729/src/derivatives.jl#L148-L161">source</a></section></details></article><h2 id="Cache"><a class="docs-heading-anchor" href="#Cache">Cache</a><a id="Cache-1"></a><a class="docs-heading-anchor-permalink" href="#Cache" title="Permalink"></a></h2><article><details class="docstring" open="true"><summary id="FiniteDiff.DerivativeCache"><a class="docstring-binding" href="#FiniteDiff.DerivativeCache"><code>FiniteDiff.DerivativeCache</code></a><span class="docstring-category">Type</span></summary><section><div><pre><code class="language-julia hljs">FiniteDiff.DerivativeCache(
3030
x :: AbstractArray{&lt;:Number},
3131
fx :: Union{Nothing,AbstractArray{&lt;:Number}} = nothing,
3232
epsilon :: Union{Nothing,AbstractArray{&lt;:Real}} = nothing,
3333
fdtype :: Type{T1} = Val{:central},
34-
returntype :: Type{T2} = eltype(x))</code></pre><p>This allocates either <code>fx</code> or <code>epsilon</code> if these are nothing and they are needed. <code>fx</code> is the current call of <code>f(x)</code> and is required for forward-differencing (otherwise is not necessary).</p></div><a class="docs-sourcelink" target="_blank" href="https://github.com/JuliaDiff/FiniteDiff.jl/blob/ff4e72e2c68702f70eda183a2eff082d64208b99/src/derivatives.jl#L43-L54">source</a></section></details></article></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../tutorials/">« Tutorials</a><a class="docs-footer-nextpage" href="../gradients/">Gradients »</a><div class="flexbox-break"></div><p class="footer-message">Powered by <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <a href="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="auto">Automatic (OS)</option><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option><option value="catppuccin-latte">catppuccin-latte</option><option value="catppuccin-frappe">catppuccin-frappe</option><option value="catppuccin-macchiato">catppuccin-macchiato</option><option value="catppuccin-mocha">catppuccin-mocha</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 1.17.0 on <span class="colophon-date" title="Thursday 16 April 2026 08:43">Thursday 16 April 2026</span>. Using Julia version 1.12.6.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>
34+
returntype :: Type{T2} = eltype(x))</code></pre><p>This allocates either <code>fx</code> or <code>epsilon</code> if these are nothing and they are needed. <code>fx</code> is the current call of <code>f(x)</code> and is required for forward-differencing (otherwise is not necessary).</p></div><a class="docs-sourcelink" target="_blank" href="https://github.com/JuliaDiff/FiniteDiff.jl/blob/88355ead740f10f28e3186e9fd3301bbb89f0729/src/derivatives.jl#L43-L54">source</a></section></details></article></article><nav class="docs-footer"><a class="docs-footer-prevpage" href="../tutorials/">« Tutorials</a><a class="docs-footer-nextpage" href="../gradients/">Gradients »</a><div class="flexbox-break"></div><p class="footer-message">Powered by <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> and the <a href="https://julialang.org/">Julia Programming Language</a>.</p></nav></div><div class="modal" id="documenter-settings"><div class="modal-background"></div><div class="modal-card"><header class="modal-card-head"><p class="modal-card-title">Settings</p><button class="delete"></button></header><section class="modal-card-body"><p><label class="label">Theme</label><div class="select"><select id="documenter-themepicker"><option value="auto">Automatic (OS)</option><option value="documenter-light">documenter-light</option><option value="documenter-dark">documenter-dark</option><option value="catppuccin-latte">catppuccin-latte</option><option value="catppuccin-frappe">catppuccin-frappe</option><option value="catppuccin-macchiato">catppuccin-macchiato</option><option value="catppuccin-mocha">catppuccin-mocha</option></select></div></p><hr/><p>This document was generated with <a href="https://github.com/JuliaDocs/Documenter.jl">Documenter.jl</a> version 1.17.0 on <span class="colophon-date" title="Thursday 30 April 2026 18:25">Thursday 30 April 2026</span>. Using Julia version 1.12.6.</p></section><footer class="modal-card-foot"></footer></div></div></div></body></html>

0 commit comments

Comments
 (0)