Open bmmalone opened 7 years ago
Currently, the solvers (and scoring) make many, many calls to malloc (via new). This is quite slow, and object pools are a straightforward approach to improve this behavior.
malloc
new
Currently, the solvers (and scoring) make many, many calls to
malloc
(vianew
). This is quite slow, and object pools are a straightforward approach to improve this behavior.