add getter for matchingWeight

This commit is contained in:
eugenefischer
2022-10-14 17:37:40 -05:00
parent d3066095d9
commit 5f0c089b0a

View File

@@ -127,4 +127,8 @@ public class MaximumWeightBipartiteAuctionMatching<V, E> implements MatchingAlgo
return graph.getEdgeSource(edge);
}
}
public BigDecimal getMatchingWeight() {
return matchingWeight;
}
}