Skip to content

Commit 8a6970a

Browse files
committed
Remove print() statement
1 parent d3b9ec0 commit 8a6970a

File tree

1 file changed

+0
-1
lines changed

1 file changed

+0
-1
lines changed

pygad/pygad.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1648,7 +1648,6 @@ def cal_pop_fitness(self):
16481648
# Make sure that both the solution and 'self.solutions' are of type 'list' not 'numpy.ndarray'.
16491649
# if (self.save_solutions) and (len(self.solutions) > 0) and (numpy.any(numpy.all(self.solutions == numpy.array(sol), axis=1)))
16501650
# if (self.save_solutions) and (len(self.solutions) > 0) and (numpy.any(numpy.all(numpy.equal(self.solutions, numpy.array(sol)), axis=1)))
1651-
# print("BBBBBB", len(self.best_solutions))
16521651
if (self.save_solutions) and (len(self.solutions) > 0) and (list(sol) in self.solutions):
16531652
solution_idx = self.solutions.index(list(sol))
16541653
fitness = self.solutions_fitness[solution_idx]

0 commit comments

Comments
 (0)