class GraphMatching::Graph::WeightedBigraph

A bigraph whose edges have weights. See `Weighted`.

Public Instance Methods

maximum_weighted_matching() click to toggle source
# File lib/graph_matching/graph/weighted_bigraph.rb, line 12
def maximum_weighted_matching
  Algorithm::MWMBipartite.new(self).match
end