Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions docs/src/features/dae_initialization.md
Original file line number Diff line number Diff line change
Expand Up @@ -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:**
Expand Down Expand Up @@ -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.
- Shampine, L. F. (2002). Consistent initial condition for differential-algebraic systems. SIAM Journal on Scientific Computing, 22(6), 2007-2026.
2 changes: 1 addition & 1 deletion docs/src/tutorials/sde_example.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
Loading