Open
Description
I found some pessimizations in explicit_predictors.hpp, in FullStep()
. A temp vector is set to 0 when it doesn't need to be. It can just be set to the first of them, and then the loops can run from 1 to bla instead of from 0 to bla. this is probably a fairly important improvement to make.