GraphTheory
FindVertexCover
find vertex cover in graph
Calling Sequence
Parameters
Description
Definition
Examples
Compatibility
FindVertexCover(G,size,opt)
G
-
graph
size
(optional) integer or range; size of vertex cover to find
opt
(optional) equation of the form method = m, where m is exact, greedy, or sat.
FindVertexCover returns a list of vertices which comprise a vertex cover in the graph G. The optional parameter size specifies a size for the vertex cover. If size is omitted, FindVertexCover behaves identically to MinimumVertexCover and returns a minimum vertex cover.
A vertex cover of a graph G is a subset S of the vertices of G such that every edge in G is incident to some member of S.
The GraphTheory[FindVertexCover] command was introduced in Maple 2019.
For more information on Maple 2019 changes, see Updates in Maple 2019.
See Also
MaximumIndependentSet
MinimumVertexCover
Download Help Document