brkga_mp_ipr_cpp
brkga_mp_ipr_cpp copied to clipboard
The Multi-Parent Biased Random-Key Genetic Algorithm with Implict Path Relink - C++ version
Hi, I got some compile errors when trying to compile the test program, and my solution was to cast as below: `std::chrono::duration_cast(status.current_time).count()` all calls in logger of file `brkga_mp_ipr.hpp`. The...
Hi. This pull request is about fixing compile erros as described in [this issue](https://github.com/ceandrade/brkga_mp_ipr_cpp/issues/9). Thank you
Hi Carlos, I think I've found a bug on the directPathRelink method. It looks like the best block exchange is never properly commited, so that the base and guide solution...
These constructors prevent aggregate initialization ```C++ auto params = BRKGA::BrkgaParams{ .population_size = 100 , .elite_percentage = 0.3 , .mutants_percentage = 0.2 }; ```
Consider the following MWE ``` $ clang++ --version clang version 17.0.2 (https://github.com/llvm/llvm-project.git b2417f51dbbd7435eb3aaf203de24de6754da50e) Target: x86_64-unknown-linux-gnu Thread model: posix InstalledDir: /home/user/clang-env/bin $ clang++ -std=gnu++23 -o tst -x c++ -I./brkga_mp_ipr - >;...