Francesco Biscani

Results 39 issues of Francesco Biscani

**Describe the bug** The test suite assumes that networkx is installed, although networkx is not a mandatory dependency for pygmo. **To Reproduce** Install pygmo and run the test suite **without**...

bug

The current ``try_emplace()`` implementation in ``raw_hash_map.h`` reads: ```c++ template std::pair try_emplace_impl(K&& k, Args&&... args) { auto res = this->find_or_prepare_insert(k); if (res.second) this->emplace_at(res.first, std::piecewise_construct, std::forward_as_tuple(std::forward(k)), std::forward_as_tuple(std::forward(args)...)); return {this->iterator_at(res.first), res.second}; } ```...

## Description Recently I found myself in a situation where a Jupyter notebook would become unresponsive because of the huge error message generated by pybind11 when an exposed function is...