Skip to content

Commit dad6a8d

Browse files
committed
core-feature: test cmake update, max flow edmondkarp init
1 parent 3662548 commit dad6a8d

File tree

7 files changed

+4
-2
lines changed

7 files changed

+4
-2
lines changed

Headers/0003_Graph/0016_MaximumFlowEdmondsKarp.h

Whitespace-only changes.

SourceCodes/0003_Graph/0016_MaximumFlowEdmondsKarp.cc

Whitespace-only changes.

SourceCodes/0003_Graph/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ set(0003GRAPH_SOURCES
1515
0013_AllPairsShortestPathsFloydWarshall.cc
1616
0014_AllPairsShortestPathsJohnson.cc
1717
0015_MaximumFlowFordFulkerson.cc
18+
0016_MaximumFlowEdmondsKarp.cc
1819

1920
)
2021

Tests/0001_Basics/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,4 +26,4 @@ target_link_libraries(
2626

2727

2828
include(GoogleTest)
29-
gtest_discover_tests(0001-Basics-Tests)
29+
gtest_discover_tests(0001-Basics-Tests DISCOVERY_TIMEOUT 30)

Tests/0002_Tree/CMakeLists.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,4 +21,4 @@ target_link_libraries(
2121
)
2222

2323
include(GoogleTest)
24-
gtest_discover_tests(0002TreeTests)
24+
gtest_discover_tests(0002TreeTests DISCOVERY_TIMEOUT 30)

Tests/0003_Graph/0016_MaximumFlowEdmondsKarpTest.cc

Whitespace-only changes.

Tests/0003_Graph/CMakeLists.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,6 +27,7 @@ add_executable(
2727
0013_AllPairsShortestPathsFloydWarshallTest.cc
2828
0014_AllPairsShortestPathsJohnsonTest.cc
2929
0015_MaximumFlowFordFulkersonTest.cc
30+
0016_MaximumFlowEdmondsKarpTest.cc
3031
)
3132

3233
target_link_libraries(

0 commit comments

Comments
 (0)