Sebastian Brockmeyer

Results 3 issues of Sebastian Brockmeyer

In CMake, when declaring the include directories, consider adding the `SYSTEM` keyword. This will make CMake create compile commands like this ``` /usr/bin/clang++ ... -isystem [...]/robin-hood-hashing/src/include -isystem /usr/local/include ... ```...

There are several things wrong with `maximum_adjacency_search`: - The pseudo code on https://www.boost.org/doc/libs/1_79_0/libs/graph/doc/maximum_adjacency_search.html does not mention any weights. Yet, `weights` is a required parameter. It's unclear what it is doing....