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.
with⁡GraphTheory:
G≔CompleteGraph⁡3,4
G≔Graph 1: an undirected graph with 7 vertices and 12 edge(s)
DrawGraph⁡G
FindVertexCover⁡G,3
1,2,3
FindVertexCover⁡G,4
4,5,6,7
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