You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The only place for Boost here is only a root solver, which can be replaced by a simple hand-coded binary search: the density versus mu function is monotonic.
Similarly, the Boost dependency in Kondo repo can be removed, since c++17 already supports "filesystem". Standing at 2022, c++17 is quite well implemented in major compilers.
This may greatly reduce the installation barrier for many users (boost filesystem never worked out of the box in most the HPC's in my experience, always requireed a manual installation).
The text was updated successfully, but these errors were encountered:
The file/directory access is included in c++17 in std::filesystem. So if we require c++17 instead of c++11, we can replace all boost::filesystem by std::filesystem.
The only place for Boost here is only a root solver, which can be replaced by a simple hand-coded binary search: the density versus mu function is monotonic.
Similarly, the Boost dependency in Kondo repo can be removed, since c++17 already supports "filesystem". Standing at 2022, c++17 is quite well implemented in major compilers.
This may greatly reduce the installation barrier for many users (boost filesystem never worked out of the box in most the HPC's in my experience, always requireed a manual installation).
The text was updated successfully, but these errors were encountered: