Skip to content

Commit 375850b

Browse files
committed
Add Differential Evolution docs and update navigation
Added documentation for Differential Evolution under evolutionary algorithms. Updated mkdocs navigation to reflect new file locations and added the new DE page. Moved GA and utils documentation to new paths for better organization.
1 parent b9dc21f commit 375850b

File tree

4 files changed

+16
-2
lines changed

4 files changed

+16
-2
lines changed

docs/mkdocs.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,13 @@ nav:
2424
- Overview: bio.md
2525
- Evolutionary:
2626
- Overview: evolutionary.md
27-
- Genetic Algorithm: ga.md
27+
- Genetic Algorithm: evolutionary/ga.md
28+
- Differential Evolution: evolutionary/de.md
2829
- Operators: evolutionary/operators.md
2930
- Darwin:
3031
- Overview: darwin.md
3132
- PSO: darwin/pso.md
32-
- Utils: evolutionary/utils.md
33+
- Utils: utils.md
3334
- Gym:
3435
- Overview: gym.md
3536
- Mono: gym/mono.md

docs/src/evolutionary/de.md

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
# Differential Evolution
2+
3+
## Example
4+
```python
5+
from metazoo.bio.evolutionary.de import DifferentialEvolution
6+
```
7+
8+
::: metazoo.bio.evolutionary.de
9+
handler: python
10+
options:
11+
show_source: true
12+
show_private_members: true
13+
show_special_members: true
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)