equal
deleted
inserted
replaced
129 return kruskal(G, edges, map_wr); |
129 return kruskal(G, edges, map_wr); |
130 } |
130 } |
131 |
131 |
132 /* ** ** Input-objects ** ** */ |
132 /* ** ** Input-objects ** ** */ |
133 |
133 |
134 /// Kruskal input source. |
134 /// Kruskal's input source. |
135 |
135 |
136 /// Kruskal input source. |
136 /// Kruskal's input source. |
137 /// |
137 /// |
138 /// In most cases you possibly want to use the \ref kruskalEdgeMap() instead. |
138 /// In most cases you possibly want to use the \ref kruskalEdgeMap() instead. |
139 /// |
139 /// |
140 /// \sa makeKruskalMapInput() |
140 /// \sa makeKruskalMapInput() |
141 /// |
141 /// |
180 } |
180 } |
181 }; |
181 }; |
182 |
182 |
183 /// Creates a KruskalMapInput object for \ref kruskal() |
183 /// Creates a KruskalMapInput object for \ref kruskal() |
184 |
184 |
185 /// It makes is easier to use |
185 /// It makes easier to use |
186 /// \ref KruskalMapInput by making it unnecessary |
186 /// \ref KruskalMapInput by making it unnecessary |
187 /// to explicitly give the type of the parameters. |
187 /// to explicitly give the type of the parameters. |
188 /// |
188 /// |
189 /// In most cases you possibly |
189 /// In most cases you possibly |
190 /// want to use the function kruskalEdgeMap() instead. |
190 /// want to use the function kruskalEdgeMap() instead. |