Skip to content

Commit 0c8f4b3

Browse files
committed
strict cross references and links
1 parent ffa94ae commit 0c8f4b3

File tree

4 files changed

+9
-5
lines changed

4 files changed

+9
-5
lines changed

docs/make.jl

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,14 +27,18 @@ makedocs(modules = [
2727
"http://www.radford.edu/~thompson/vodef90web/problems/demosnodislin/Demos_Pitagora/DemoHires/demohires.pdf",
2828
"https://www.radford.edu/%7Ethompson/RP/nonnegative.pdf",
2929
"http://www.radford.edu/~thompson/vodef90web/problems/demosnodislin/Demos_Pitagora/DemoOrego/demoorego.pdf",
30+
"https://zenodo.org/record/5883749#.Yg-d698xmu4",
31+
"https://www.sciencedirect.com/science/article/abs/pii/S0375960109009591",
32+
"https://www.sciencedirect.com/science/article/abs/pii/0375960176901018",
3033
],
3134
strict = [
3235
:doctest,
3336
:linkcheck,
3437
:parse_error,
3538
:example_block,
39+
:cross_references,
3640
# Other available options are
37-
# :autodocs_block, :cross_references, :docs_block, :eval_block, :example_block, :footnote, :meta_block, :missing_docs, :setup_block
41+
# :autodocs_block, :docs_block, :eval_block, :example_block, :footnote, :meta_block, :missing_docs, :setup_block
3842
],
3943
doctest = false, clean = true,
4044
format = Documenter.HTML(analytics = "UA-90474609-3",

docs/src/basics/faq.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -443,7 +443,7 @@ like BigFloats or [ArbFloats.jl](https://github.com/JuliaArbTypes/ArbFloats.jl).
443443
#### Native Julia solvers compatibility with autodifferentiation
444444

445445
Yes, they are compatible with automatic differentiation! Take a look at the
446-
[sensitivity analysis](@ref sensitivity) page for more details.
446+
[sensitivity analysis](https://docs.sciml.ai/SciMLSensitivity/stable/) page for more details.
447447

448448
If the algorithm does not have differentiation of parameter-dependent events,
449449
then you simply need to make the initial condition have elements of Dual numbers.

docs/src/solvers/sde_solve.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@ a given SDE, the use of high weak order solvers is recommended. Specifically,
4343
Runge-Kutta solvers with weak order 2 due to Roessler are adaptive. All other
4444
high weak order solvers currently require a fixed step size.
4545

46-
## Special Noise Forms
46+
## [Special Noise Forms](@id special_noise_forms)
4747

4848
Some solvers are for specialized forms of noise. Diagonal noise is the default
4949
setup. Non-diagonal noise is specified via setting `noise_rate_prototype` to
@@ -69,7 +69,7 @@ I(h) = \int_0^h\int_0^sdW^1_tdW^2_s
6969
in these schemes.
7070

7171
The approximation of these iterated integrals can be avoided, if the diffusion matrix
72-
satisfies the special commutativity condition given [above](@ref special noise forms).
72+
satisfies the special commutativity condition given [above](@ref special_noise_forms).
7373
Because of this, many methods are only applicable to problems that satisfy the commutativity
7474
condition. In other words, many methods can only handle specific noise cases, like
7575
diagonal noise or commutative noise, because of how this iterated integral approximation

docs/src/tutorials/sde_example.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -350,4 +350,4 @@ SDEProblem(f, g, ones(2), tspan, noise = heston_noise)
350350
Of course, to fully define this problem, we need to define our constants. Constructors
351351
for making common models like this easier to define can be found in the modeling
352352
toolkits. For example, the `HestonProblem` is pre-defined as part of the
353-
[financial modeling tools](@ref financial_models).
353+
[financial modeling tools](https://github.com/SciML/DiffEqFinancial.jl).

0 commit comments

Comments
 (0)