Changeset 2549:88b81ec599ed in lemon-0.x
- Timestamp:
- 12/29/07 16:11:41 (17 years ago)
- Branch:
- default
- Phase:
- public
- Convert:
- svn:c9d7d8f5-90d6-0310-b91f-818b3a526b0e/lemon/trunk@3426
- Files:
-
- 1 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
lemon/max_matching.h
r2548 r2549 31 31 ///\ingroup matching 32 32 ///\file 33 ///\brief Maximum matching algorithm in undirected graph.33 ///\brief Maximum matching algorithms in undirected graph. 34 34 35 35 namespace lemon { … … 1468 1468 int d = _blossom_set->find(_ugraph.source(next)); 1469 1469 1470 int ib , id;1470 int ib = -1, id = -1; 1471 1471 for (int i = 0; i < int(subblossoms.size()); ++i) { 1472 1472 if (subblossoms[i] == b) ib = i; … … 2655 2655 int d = _blossom_set->find(_ugraph.source(next)); 2656 2656 2657 int ib , id;2657 int ib = -1, id = -1; 2658 2658 for (int i = 0; i < int(subblossoms.size()); ++i) { 2659 2659 if (subblossoms[i] == b) ib = i; -
test/Makefile.am
r2483 r2549 31 31 test/matrix_maps_test \ 32 32 test/max_matching_test \ 33 test/max_weighted_matching_test \ 33 34 test/min_cost_flow_test \ 34 35 test/path_test \ … … 80 81 test_matrix_maps_test_SOURCES = test/matrix_maps_test.cc 81 82 test_max_matching_test_SOURCES = test/max_matching_test.cc 83 test_max_weighted_matching_test_SOURCES = test/max_weighted_matching_test.cc 82 84 test_min_cost_flow_test_SOURCES = test/min_cost_flow_test.cc 83 85 test_path_test_SOURCES = test/path_test.cc
Note: See TracChangeset
for help on using the changeset viewer.