0
2
0
... | ... |
@@ -1166,6 +1166,11 @@ |
1166 | 1166 |
(*_delta3_index)[e] = _delta3->PRE_HEAP; |
1167 | 1167 |
} |
1168 | 1168 |
|
1169 |
_delta1->clear(); |
|
1170 |
_delta2->clear(); |
|
1171 |
_delta3->clear(); |
|
1172 |
_tree_set->clear(); |
|
1173 |
|
|
1169 | 1174 |
for (NodeIt n(_graph); n != INVALID; ++n) { |
1170 | 1175 |
Value max = 0; |
1171 | 1176 |
for (OutArcIt e(_graph, n); e != INVALID; ++e) { |
... | ... |
@@ -1905,6 +1910,10 @@ |
1905 | 1910 |
(*_delta3_index)[e] = _delta3->PRE_HEAP; |
1906 | 1911 |
} |
1907 | 1912 |
|
1913 |
_delta2->clear(); |
|
1914 |
_delta3->clear(); |
|
1915 |
_tree_set->clear(); |
|
1916 |
|
|
1908 | 1917 |
for (NodeIt n(_graph); n != INVALID; ++n) { |
1909 | 1918 |
Value max = - std::numeric_limits<Value>::max(); |
1910 | 1919 |
for (OutArcIt e(_graph, n); e != INVALID; ++e) { |
... | ... |
@@ -1675,6 +1675,9 @@ |
1675 | 1675 |
/// matching. This initialization is also called jumpstart heuristic. |
1676 | 1676 |
void fractionalInit() { |
1677 | 1677 |
createStructures(); |
1678 |
|
|
1679 |
_blossom_node_list.clear(); |
|
1680 |
_blossom_potential.clear(); |
|
1678 | 1681 |
|
1679 | 1682 |
if (_fractional == 0) { |
1680 | 1683 |
_fractional = new FractionalMatching(_graph, _weight, false); |
... | ... |
@@ -1697,11 +1700,20 @@ |
1697 | 1700 |
|
1698 | 1701 |
_unmatched = 0; |
1699 | 1702 |
|
1703 |
_delta1->clear(); |
|
1704 |
_delta2->clear(); |
|
1705 |
_delta3->clear(); |
|
1706 |
_delta4->clear(); |
|
1707 |
_blossom_set->clear(); |
|
1708 |
_tree_set->clear(); |
|
1709 |
|
|
1700 | 1710 |
int index = 0; |
1701 | 1711 |
for (NodeIt n(_graph); n != INVALID; ++n) { |
1702 | 1712 |
Value pot = _fractional->nodeValue(n); |
1703 | 1713 |
(*_node_index)[n] = index; |
1704 | 1714 |
(*_node_data)[index].pot = pot; |
1715 |
(*_node_data)[index].heap_index.clear(); |
|
1716 |
(*_node_data)[index].heap.clear(); |
|
1705 | 1717 |
int blossom = |
1706 | 1718 |
_blossom_set->insert(n, std::numeric_limits<Value>::max()); |
1707 | 1719 |
|
... | ... |
@@ -3080,6 +3092,9 @@ |
3080 | 3092 |
/// matching. This initialization is also called jumpstart heuristic. |
3081 | 3093 |
void fractionalInit() { |
3082 | 3094 |
createStructures(); |
3095 |
|
|
3096 |
_blossom_node_list.clear(); |
|
3097 |
_blossom_potential.clear(); |
|
3083 | 3098 |
|
3084 | 3099 |
if (_fractional == 0) { |
3085 | 3100 |
_fractional = new FractionalMatching(_graph, _weight, false); |
... | ... |
@@ -3102,11 +3117,19 @@ |
3102 | 3117 |
|
3103 | 3118 |
_unmatched = 0; |
3104 | 3119 |
|
3120 |
_delta2->clear(); |
|
3121 |
_delta3->clear(); |
|
3122 |
_delta4->clear(); |
|
3123 |
_blossom_set->clear(); |
|
3124 |
_tree_set->clear(); |
|
3125 |
|
|
3105 | 3126 |
int index = 0; |
3106 | 3127 |
for (NodeIt n(_graph); n != INVALID; ++n) { |
3107 | 3128 |
Value pot = _fractional->nodeValue(n); |
3108 | 3129 |
(*_node_index)[n] = index; |
3109 | 3130 |
(*_node_data)[index].pot = pot; |
3131 |
(*_node_data)[index].heap_index.clear(); |
|
3132 |
(*_node_data)[index].heap.clear(); |
|
3110 | 3133 |
int blossom = |
3111 | 3134 |
_blossom_set->insert(n, std::numeric_limits<Value>::max()); |
3112 | 3135 |
|
0 comments (0 inline)