diff --git a/meson.build b/meson.build index b581046d9680294dc721fffa98f1f8de1b8ad1b8..b39d3c17af524cba5bb6d2372dc4736ef98058b0 100755 --- a/meson.build +++ b/meson.build @@ -12,6 +12,7 @@ executable('gp-bnb', 'bnb/graph.cpp', 'bnb/partition.cpp', 'bnb/metis_reader.cpp', + 'bnb/edmonds_karp.cpp', 'bnb/bnb.cpp', include_directories: inc) diff --git a/test/edmonds_karp_test.cpp b/test/edmonds_karp_test.cpp new file mode 100644 index 0000000000000000000000000000000000000000..fc864418422a1b3ab693584b97dc6f4c3c448775 --- /dev/null +++ b/test/edmonds_karp_test.cpp @@ -0,0 +1,9 @@ +#include <catch2/catch.hpp> + +#include <gp-bnb/edmonds_karp.hpp> + +// Tests for Edmonds-Karp Max Flow algorithm + +TEST_CASE("EdmondsKarpMaxFlow") { + +} \ No newline at end of file diff --git a/test/meson.build b/test/meson.build index 7989abff765195ba11525703c5f5719a406d05b9..819d301c3a61f20db09cc5fcbf4b46674aa98059 100644 --- a/test/meson.build +++ b/test/meson.build @@ -2,10 +2,12 @@ testexe = executable( 'gp_unittests', # test executable name 'graph_test.cpp', 'reader_test.cpp', + 'edmonds_karp_test.cpp', 'bnb_test.cpp', # tests source files to be compiled '../bnb/graph.cpp', '../bnb/partition.cpp', '../bnb/metis_reader.cpp', + '../bnb/edmonds_karp.cpp', '../bnb/bnb.cpp', include_directories : inc) # declared include directories in root :code:`meson.build`