diff --git a/src/problems/dae_problems.jl b/src/problems/dae_problems.jl index 12525409a..6e91313fe 100644 --- a/src/problems/dae_problems.jl +++ b/src/problems/dae_problems.jl @@ -2,7 +2,7 @@ Defines an implicit ordinary differential equation (ODE) or differential-algebraic equation (DAE) problem. -Documentation Page: https://docs.sciml.ai/DiffEqDocs/stable/types/dae_types/ +Documentation Page: [https://docs.sciml.ai/DiffEqDocs/stable/types/dae_types/](https://docs.sciml.ai/DiffEqDocs/stable/types/dae_types/) ## Mathematical Specification of an DAE Problem diff --git a/src/problems/dde_problems.jl b/src/problems/dde_problems.jl index e31e57ae0..750083975 100644 --- a/src/problems/dde_problems.jl +++ b/src/problems/dde_problems.jl @@ -6,7 +6,7 @@ struct StandardDDEProblem end @doc doc""" Defines a delay differential equation (DDE) problem. -Documentation Page: https://docs.sciml.ai/DiffEqDocs/stable/types/dde_types/ +Documentation Page: [https://docs.sciml.ai/DiffEqDocs/stable/types/dde_types/](https://docs.sciml.ai/DiffEqDocs/stable/types/dde_types/) ## Mathematical Specification of a DDE Problem diff --git a/src/problems/discrete_problems.jl b/src/problems/discrete_problems.jl index 9e194504d..8d89e4779 100644 --- a/src/problems/discrete_problems.jl +++ b/src/problems/discrete_problems.jl @@ -4,7 +4,7 @@ const DISCRETE_OUTOFPLACE_DEFAULT = DiscreteFunction{false}((u, p, t) -> u) @doc doc""" Defines a discrete dynamical system problem. -Documentation Page: https://docs.sciml.ai/DiffEqDocs/stable/types/discrete_types/ +Documentation Page: [https://docs.sciml.ai/DiffEqDocs/stable/types/discrete_types/](https://docs.sciml.ai/DiffEqDocs/stable/types/discrete_types/) ## Mathematical Specification of a Discrete Problem diff --git a/src/problems/implicit_discrete_problems.jl b/src/problems/implicit_discrete_problems.jl index 314604ca5..4df3e6ea7 100644 --- a/src/problems/implicit_discrete_problems.jl +++ b/src/problems/implicit_discrete_problems.jl @@ -1,7 +1,7 @@ @doc doc""" Defines a discrete dynamical system problem. -Documentation Page: https://docs.sciml.ai/DiffEqDocs/stable/types/discrete_types/ +Documentation Page: [https://docs.sciml.ai/DiffEqDocs/stable/types/discrete_types/](https://docs.sciml.ai/DiffEqDocs/stable/types/discrete_types/) ## Mathematical Specification of a ImplicitDiscrete Problem diff --git a/src/problems/integral_problems.jl b/src/problems/integral_problems.jl index e68b764ea..b3087ae4b 100644 --- a/src/problems/integral_problems.jl +++ b/src/problems/integral_problems.jl @@ -1,7 +1,7 @@ @doc doc""" Defines an integral problem. -Documentation Page: https://docs.sciml.ai/Integrals/stable/ +Documentation Page: [https://docs.sciml.ai/Integrals/stable/](https://docs.sciml.ai/Integrals/stable/) ## Mathematical Specification of an Integral Problem diff --git a/src/problems/linear_problems.jl b/src/problems/linear_problems.jl index ebb5e3c97..a723ee3f7 100644 --- a/src/problems/linear_problems.jl +++ b/src/problems/linear_problems.jl @@ -1,7 +1,7 @@ @doc doc""" Defines a linear system problem. -Documentation Page: https://docs.sciml.ai/LinearSolve/stable/basics/LinearProblem/ +Documentation Page: [https://docs.sciml.ai/LinearSolve/stable/basics/LinearProblem/](https://docs.sciml.ai/LinearSolve/stable/basics/LinearProblem/) ## Mathematical Specification of a Linear Problem diff --git a/src/problems/ode_problems.jl b/src/problems/ode_problems.jl index db8ec87b7..bb228e84d 100644 --- a/src/problems/ode_problems.jl +++ b/src/problems/ode_problems.jl @@ -6,7 +6,7 @@ struct StandardODEProblem end @doc doc""" Defines an ordinary differential equation (ODE) problem. -Documentation Page: https://docs.sciml.ai/DiffEqDocs/stable/types/ode_types/ +Documentation Page: [https://docs.sciml.ai/DiffEqDocs/stable/types/ode_types/](https://docs.sciml.ai/DiffEqDocs/stable/types/ode_types/) ## Mathematical Specification of an ODE Problem diff --git a/src/problems/optimization_problems.jl b/src/problems/optimization_problems.jl index 0be3f9245..176f9f116 100644 --- a/src/problems/optimization_problems.jl +++ b/src/problems/optimization_problems.jl @@ -3,7 +3,7 @@ @doc doc""" Defines an optimization problem. -Documentation Page: https://docs.sciml.ai/Optimization/stable/API/optimization_problem/ +Documentation Page: [https://docs.sciml.ai/Optimization/stable/API/optimization_problem/](https://docs.sciml.ai/Optimization/stable/API/optimization_problem/) ## Mathematical Specification of an Optimization Problem diff --git a/src/problems/rode_problems.jl b/src/problems/rode_problems.jl index fa0233647..479888f75 100644 --- a/src/problems/rode_problems.jl +++ b/src/problems/rode_problems.jl @@ -1,7 +1,7 @@ @doc doc""" Defines a random ordinary differential equation (RODE) problem. -Documentation Page: https://docs.sciml.ai/DiffEqDocs/stable/types/rode_types/ +Documentation Page: [https://docs.sciml.ai/DiffEqDocs/stable/types/rode_types/](https://docs.sciml.ai/DiffEqDocs/stable/types/rode_types/) ## Mathematical Specification of a RODE Problem diff --git a/src/problems/sdde_problems.jl b/src/problems/sdde_problems.jl index 5de0b257c..cfcf1aec5 100644 --- a/src/problems/sdde_problems.jl +++ b/src/problems/sdde_problems.jl @@ -1,7 +1,7 @@ @doc doc""" Defines a stochastic delay differential equation (SDDE) problem. -Documentation Page: https://docs.sciml.ai/DiffEqDocs/stable/types/sdde_types/ +Documentation Page: [https://docs.sciml.ai/DiffEqDocs/stable/types/sdde_types/](https://docs.sciml.ai/DiffEqDocs/stable/types/sdde_types/) ## Mathematical Specification of a Stochastic Delay Differential Equation (SDDE) Problem diff --git a/src/problems/sde_problems.jl b/src/problems/sde_problems.jl index a8ad1b982..60017f740 100644 --- a/src/problems/sde_problems.jl +++ b/src/problems/sde_problems.jl @@ -6,7 +6,7 @@ struct StandardSDEProblem end @doc doc""" Defines an stochastic differential equation (SDE) problem. -Documentation Page: https://docs.sciml.ai/DiffEqDocs/stable/types/sde_types/ +Documentation Page: [https://docs.sciml.ai/DiffEqDocs/stable/types/sde_types/](https://docs.sciml.ai/DiffEqDocs/stable/types/sde_types/) ## Mathematical Specification of a SDE Problem