munkres-cpp icon indicating copy to clipboard operation
munkres-cpp copied to clipboard

Kuhn-Munkres (Hungarian) Algorithm in C++

Results 10 munkres-cpp issues
Sort by recently updated
recently updated
newest added

Adding target_include_directories to allow easier usage in subdirectory in cmake. I noticed that this was failing to build correctly when I would include as `FetchContent` in a different project. More...

First there's this error: ``` ===> Testing for munkres-cpp-1.0.0.6 CMake Deprecation Warning at CMakeLists.txt:2 (cmake_minimum_required): Compatibility with CMake < 2.8.12 will be removed from a future version of CMake. Update...

I build the project, but failed. ``` henry@ubuntu:~/CProject/munkres-cpp/build$ make install [100%] Built target munkres Install the project... -- Install configuration: "" -- Installing: /usr/local/lib/libmunkres.a CMake Error at cmake_install.cmake:41 (file): file...

sometimes i get the max return: d2: -0.851823 -0.0848411 0.997337 0.519324 0.752464 0.05258 0.971547 0.304817 -0.311632 dd: -1 -1 0 -1 0 -1 0 -1 -1 pair 0 is :0,2...

Just want to note, that whenever you write code (you usually see this kind of thing in various tutorials) like this ``` m_matrix = new T*[rows]; // rows for (...

Support other matrix data type classes from other libs (boost)? UPD Implemented: - `std::array` (C++11); - raw (C-style) array; - `boost::numeric::ublas::matrix`; - `std::vector `.

Method `Munkres::pair_in_list` always return `false`. I have launched tests with option `--gtest_repeat=100` and built test coverage report (using lcov). Based report I found that method `Munkres::pair_in_list` always return `false`. I...

Add rules for automatic formatters: astyle, uncrustify, etc... On the one hand each programmer has personal formating preferences and on the other hand, code on the whole project should looks...

Enforce class invariants when DEBUG def'd?