Skip to content

Commit 61ca603

Browse files
committed
Update Docs
Introduces a new documentation file for Particle Swarm Optimizer (PSO) under the Darwin module, including a usage example and API reference configuration.
1 parent 0677a92 commit 61ca603

File tree

19 files changed

+3941
-2920
lines changed

19 files changed

+3941
-2920
lines changed

docs/mkdocs.yml

Lines changed: 18 additions & 17 deletions
Original file line numberDiff line numberDiff line change
@@ -20,24 +20,25 @@ nav:
2020
- Installation: installation.md
2121
- Usage: usage.md
2222
- Modules:
23-
- Bio:
24-
- Overview: bio.md
25-
- Evolutionary:
26-
- Overview: evolutionary.md
27-
- Genetic Algorithm: ga.md
28-
- Operators: evolutionary/operators.md
29-
- Utils: evolutionary/utils.md
30-
- Gym:
31-
- Overview: gym.md
32-
- Mono: gym/mono.md
23+
- Bio:
24+
- Overview: bio.md
25+
- Evolutionary:
26+
- Overview: evolutionary.md
27+
- Genetic Algorithm: ga.md
28+
- Operators: evolutionary/operators.md
29+
- Utils: evolutionary/utils.md
30+
- Gym:
31+
- Overview: gym.md
32+
- Mono: gym/mono.md
3333
- PettingZoo: pettingzoo.md
3434
- Playgrounds:
35-
- Continuous Example: assets/notebooks/GA-Simple.ipynb
36-
- TSP Example: assets/notebooks/GA-TSP.ipynb
37-
- NQueens Example: assets/notebooks/GA-NQueens.ipynb
38-
- Tarea 1: assets/notebooks/Tarea1.ipynb
39-
- Tarea 2: assets/notebooks/Tarea2.ipynb
40-
- Tarea 3: assets/notebooks/Tarea3.ipynb
35+
- Continuous Example: assets/GA-Simple.ipynb
36+
- TSP Example: assets/GA-TSP.ipynb
37+
- NQueens Example: assets/GA-NQueens.ipynb
38+
- Tarea 1: assets/Homeworks/Tarea1.ipynb
39+
- Tarea 2: assets/Homeworks/Tarea2.ipynb
40+
- Tarea 3: assets/Homeworks/Tarea3.ipynb
41+
- Tarea 6: assets/Homeworks/Tarea6.ipynb
4142
plugins:
4243
- search
4344
- mkdocs-jupyter:
@@ -66,4 +67,4 @@ plugins:
6667
# lang: en
6768
# - name: Español
6869
# link: /es/
69-
# lang: es
70+
# lang: es

docs/src/assets/notebooks/GA-NQueens.ipynb renamed to docs/src/assets/GA-NQueens.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"from metazoo.bio.evolutionary import GeneticAlgorithm\n",
1919
"from metazoo.bio.evolutionary.operators import selection, mutation, crossover\n",
2020
"from metazoo.gym.combinatorial import NQueens\n",
21-
"from metazoo.bio.evolutionary.utils import encoding"
21+
"from metazoo.bio.utils import encoding"
2222
]
2323
},
2424
{

docs/src/assets/notebooks/GA-Simple.ipynb renamed to docs/src/assets/GA-Simple.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"from metazoo.bio.evolutionary import GeneticAlgorithm\n",
1919
"from metazoo.bio.evolutionary.operators import selection, mutation, crossover\n",
2020
"from metazoo.gym.mono import Function\n",
21-
"from metazoo.bio.evolutionary.utils import encoding"
21+
"from metazoo.bio.utils import encoding"
2222
]
2323
},
2424
{

docs/src/assets/notebooks/GA-TSP.ipynb renamed to docs/src/assets/GA-TSP.ipynb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@
1818
"from metazoo.bio.evolutionary import GeneticAlgorithm\n",
1919
"from metazoo.bio.evolutionary.operators import selection, mutation, crossover\n",
2020
"from metazoo.gym.combinatorial import TSP\n",
21-
"from metazoo.bio.evolutionary.utils import encoding"
21+
"from metazoo.bio.utils import encoding"
2222
]
2323
},
2424
{

docs/src/assets/Homeworks/Tarea1.ipynb

Lines changed: 599 additions & 0 deletions
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)