|
Aleph-w 3.0
A C++ Library for Data Structures and Algorithms
|
Result of minimum-cost matching. More...
#include <Min_Cost_Matching.H>
Public Attributes | |
| Cost_Type | total_cost = Cost_Type{0} |
| Sum of matched arc costs. | |
| size_t | cardinality = 0 |
| Number of arcs in the matching. | |
Result of minimum-cost matching.
Stores the total cost and cardinality of the computed matching.
| Cost_Type | Numeric type for total cost (default long long). |
Definition at line 89 of file Min_Cost_Matching.H.
| size_t Aleph::Min_Cost_Matching_Result< Cost_Type >::cardinality = 0 |
Number of arcs in the matching.
Definition at line 92 of file Min_Cost_Matching.H.
Referenced by Aleph::compute_minimum_cost_general_matching().
| Cost_Type Aleph::Min_Cost_Matching_Result< Cost_Type >::total_cost = Cost_Type{0} |
Sum of matched arc costs.
Definition at line 91 of file Min_Cost_Matching.H.