From dbf2e3f05c2fff8f273f5952b9fb21aac5541e37 Mon Sep 17 00:00:00 2001 From: Iztok Fister Jr Date: Fri, 11 Mar 2022 11:24:46 +0100 Subject: [PATCH] Typo fix --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 7bd26c2e..f03154c8 100644 --- a/README.md +++ b/README.md @@ -116,7 +116,7 @@ Let’s say, we want to try out PSO against the Pintér problem function. Firstl from niapy.algorithms.basic import ParticleSwarmAlgorithm from niapy.task import Task -# we will run 10 repetitions of Weighed, velocity clamped PSO on the Pinter problem +# we will run 10 repetitions of Weighted, velocity clamped PSO on the Pinter problem for i in range(10): task = Task(problem='pinter', dimension=10, max_evals=10000) algorithm = ParticleSwarmAlgorithm(population_size=100, w=0.9, c1=0.5, c2=0.3, min_velocity=-1, max_velocity=1)