Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
  • Loading branch information
AlecsFerra authored Oct 6, 2023
1 parent 8408b71 commit 584fc00
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions evoman/environment.py
Original file line number Diff line number Diff line change
Expand Up @@ -605,9 +605,9 @@ def multiple(self,pcont,econt):
vtime.append(time)

vfitness = self.cons_multi(numpy.array(vfitness))
vplayerlife = self.cons_multi(numpy.array(vplayerlife))
venemylife = self.cons_multi(numpy.array(venemylife))
vtime = self.cons_multi(numpy.array(vtime))
vplayerlife = numpy.array(vplayerlife)
venemylife = numpy.array(venemylife)
vtime = numpy.array(vtime)

return vfitness, vplayerlife, venemylife, vtime

Expand Down

0 comments on commit 584fc00

Please sign in to comment.