There was a change in boost (boostorg/math@fc9891cccd7ff595bf67bf88ca6a8ac38ae7a9c8) that broke compilation of NLPSolverCuttingPlaneMinimax because the signature of boost::math::tools::brent_find_minima() changed (now expecting std::uintmax_t instead of boost::uintmax_t).
This PR adapts to this change.
An alternative may have been to include boost/cstdint.hpp to get boost::uintmax_t back. I haven't tried that.
There was a change in boost (boostorg/math@fc9891cccd7ff595bf67bf88ca6a8ac38ae7a9c8) that broke compilation of
NLPSolverCuttingPlaneMinimax
because the signature ofboost::math::tools::brent_find_minima()
changed (now expectingstd::uintmax_t
instead ofboost::uintmax_t
). This PR adapts to this change.An alternative may have been to include
boost/cstdint.hpp
to getboost::uintmax_t
back. I haven't tried that.