Skip to content

Commit d96f48f

Browse files
committed
Add new dependencies and homework files
Added networkx, plotly, and rich to pyproject.toml dependencies. Renamed Tarea 1-3 notebooks to Homeworks directory and added new Tarea 4 and Tarea 5 notebooks. Minor update in GeneticAlgorithm summary output.
1 parent b8a890c commit d96f48f

File tree

9 files changed

+1720
-30
lines changed

9 files changed

+1720
-30
lines changed

metazoo/pyproject.toml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,10 @@ authors = [
88
]
99
requires-python = ">=3.13"
1010
dependencies = [
11-
"numpy==2.3.2"
11+
"numpy==2.3.2",
12+
"networkx==3.5",
13+
"plotly>=6.3.0",
14+
"rich>=14.1.0",
1215
]
1316

1417
[build-system]

metazoo/src/metazoo/bio/evolutionary/ga.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,7 +59,7 @@ def summary(self):
5959
table.add_row("Crossover Function", self.crossover_function.__name__)
6060
table.add_row("Mutation Function", self.mutation_function.__name__)
6161
table.add_row("Fitness Function", self.fitness_function.__name__)
62-
table.add_row("Dimension", str(self.dim))
62+
#table.add_row("Dimension", str(self.dim))
6363
table.add_row(
6464
"Elitism", str(self.elitism) if self.elitism is not None else "None"
6565
)
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)