icaros-usc / pyribs

A bare-bones Python library for quality diversity optimization.
https://pyribs.org
MIT License
208 stars 34 forks source link

Replace np.product with np.prod due to deprecation #385

Closed btjanaka closed 1 year ago

btjanaka commented 1 year ago

Description

np.product is deprecated in numpy 1.25.0 -- see https://github.com/numpy/numpy/pull/23314

This PR replaces our calls to np.product with np.prod.

TODO

Questions

Status