maximum.bipartite.matching {igraph} | R Documentation |
Matching
Description
maximum.bipartite.matching()
was renamed to max_bipartite_match()
to create a more
consistent API.
Usage
maximum.bipartite.matching(
graph,
types = NULL,
weights = NULL,
eps = .Machine$double.eps
)
Arguments
graph |
The input graph. It might be directed, but edge directions will be ignored. |
types |
Vertex types, if the graph is bipartite. By default they
are taken from the ‘ |
weights |
Potential edge weights. If the graph has an edge
attribute called ‘ |
eps |
A small real number used in equality tests in the weighted
bipartite matching algorithm. Two real numbers are considered equal in
the algorithm if their difference is smaller than |