Skip to content

Commit 3a92b74

Browse files
committed
strict links
1 parent 07e7e82 commit 3a92b74

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

docs/make.jl

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,15 @@ include("pages.jl")
88
makedocs(sitename = "SymbolicNumericIntegration.jl",
99
authors = "Shahriar Iravanian",
1010
modules = [SymbolicNumericIntegration],
11-
clean = true, doctest = false,
11+
clean = true, doctest = false, linkcheck = true,
12+
strict = [
13+
:doctest,
14+
:linkcheck,
15+
:parse_error,
16+
:example_block,
17+
# Other available options are
18+
# :autodocs_block, :cross_references, :docs_block, :eval_block, :example_block, :footnote, :meta_block, :missing_docs, :setup_block
19+
],
1220
format = Documenter.HTML(analytics = "UA-90474609-3",
1321
assets = ["assets/favicon.ico"],
1422
canonical = "https://docs.sciml.ai/SymbolicNumericIntegration/stable/"),

docs/src/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
**SymbolicNumericIntegration.jl** is a hybrid symbolic/numerical integration package that works on the [Julia Symbolics](https://docs.sciml.ai/Symbolics/stable/) expressions.
44

55
**SymbolicNumericIntegration.jl** uses a randomized algorithm based on a hybrid of the *method of undetermined coefficients* and *sparse regression* and is able to solve a large subset of basic standard integrals (polynomials, exponential/logarithmic, trigonometric and hyperbolic, inverse trigonometric and hyperbolic, rational and square root).
6-
The basis of how it works and the theory of integration using the Symbolic-Numeric methods refer to [Basis of Symbolic-Numeric Integration](docs/theory.ipynb).
6+
The basis of how it works and the theory of integration using the Symbolic-Numeric methods refer to [Basis of Symbolic-Numeric Integration](https://github.com/SciML/SymbolicNumericIntegration.jl/blob/main/docs/theory.ipynb).
77

88
Function `integrate` returns the integral of a univariate expression with *constant* real or complex coefficients. `integrate` returns a tuple with three values. The first one is the solved integral, the second one is the sum of the unsolved terms, and the third value is the residual error. If `integrate` is successful, the unsolved portion is reported as 0.
99

0 commit comments

Comments
 (0)