bmmalone / urlearning-cpp

This c++ project implements a number of algorithms for learning Bayesian network structures using state space search techniques.
MIT License
8 stars 4 forks source link

Use Boost object pools #16

Open bmmalone opened 7 years ago

bmmalone commented 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.