A little useful C++ algorithm library.
- Eigen3 for Optimization
USE_OPTIMIZATION: for enable the optimization module
git clone https://github.com/BKHao/Chimes
cd Chimes
mkdir build && cd build
cmake ..
make -j8
make install
After installed, using FindChimes in your project please.
git clone https://github.com/BKHao/Chimes
Open cmake-gui
Where is the source code: Chimes
Where to build the binaries: Chimes/build
note: check the location of dependencies and install. It is recommended to use vcpkg to add dependencies.
Configure->Generate->Open Project
ALL_BUILD->INSTALL
The example and data is in 'test'. Include Chimes in your project when testing and using it.
27/04/2022 Start.
29/04/2022 Complete steepest descent method in Optimization.
14/05/2022 Complete LBFGS in Optimization.