diff --git a/docs/src/features/dae_initialization.md b/docs/src/features/dae_initialization.md index 6f8acd647..18d344ae8 100644 --- a/docs/src/features/dae_initialization.md +++ b/docs/src/features/dae_initialization.md @@ -33,7 +33,7 @@ DiffEqBase.ShampineCollocationInit ## ⚠️ WARNING: NoInit Usage -!!! warn "Use NoInit at your own risk" +!!! warning "Use NoInit at your own risk" **`NoInit()` should almost never be used.** No algorithm has any guarantee of correctness if `NoInit()` is used with inconsistent initial conditions. Users should almost always use `CheckInit()` instead for safety. **Important:** @@ -213,4 +213,4 @@ sol = solve(prob, IDA(), initializealg = CheckInit()) # Sundials ## References - Brown, P. N., Hindmarsh, A. C., & Petzold, L. R. (1998). Consistent initial condition calculation for differential-algebraic systems. SIAM Journal on Scientific Computing, 19(5), 1495-1512. -- Shampine, L. F. (2002). Consistent initial condition for differential-algebraic systems. SIAM Journal on Scientific Computing, 22(6), 2007-2026. \ No newline at end of file +- Shampine, L. F. (2002). Consistent initial condition for differential-algebraic systems. SIAM Journal on Scientific Computing, 22(6), 2007-2026. diff --git a/docs/src/tutorials/sde_example.md b/docs/src/tutorials/sde_example.md index c62797daa..e984f8e92 100644 --- a/docs/src/tutorials/sde_example.md +++ b/docs/src/tutorials/sde_example.md @@ -130,7 +130,7 @@ sol = SDE.solve(ensembleprob, SDE.EnsembleThreads(), trajectories = 1000); nothing # hide ``` -!!! warn +!!! warning If you use a custom noise process, you might need to specify it in a custom prob_func in the EnsembleProblem constructor, as each trajectory needs its own noise process.