Skip to content

Commit c8b0fa3

Browse files
docs: expose individual solve functions in docs
1 parent bcf5b3d commit c8b0fa3

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

docs/src/manual/solver.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -32,6 +32,15 @@ to `solve_univar`. We can see that essentially, `solve_univar` is the building b
3232
it to `ia_solve`, which attempts solving by attraction and isolation [^2]. This only works when the input is a single expression
3333
and the user wants the answer in terms of a single variable. Say `log(x) - a == 0` gives us `[e^a]`.
3434

35+
```@docs
36+
Symbolics.solve_univar
37+
Symbolics.solve_multivar
38+
Symbolics.ia_solve
39+
Symbolics.ia_conditions!
40+
Symbolics.is_periodic
41+
Symbolics.fundamental_period
42+
```
43+
3544
#### Nice examples
3645

3746
```@example solver

0 commit comments

Comments
 (0)