dom.num.exact {pcds} | R Documentation |
Exact domination number (i.e., domination number by the exact algorithm)
Description
Returns the (exact) domination number
based on the incidence matrix Inc.Mat
of a graph
or a digraph
and the indices (i.e., row numbers of Inc.Mat
)
for the corresponding (exact) minimum dominating set.
Here the row number in the incidence matrix corresponds
to the index of the vertex (i.e., index of the data
point). The function works whether loops are allowed
or not (i.e., whether the first diagonal is all 1 or
all 0). It takes a rather long time for large number of vertices
(i.e., large number of row numbers).
Usage
dom.num.exact(Inc.Mat)
Arguments
Inc.Mat |
A square matrix consisting of 0's and 1's which represents the incidence matrix of a graph or digraph. |
Value
A list
with two elements
dom.num |
The cardinality of the (exact) minimum dominating set,
i.e., (exact) domination number of the
graph or digraph whose incidence matrix |
ind.mds |
The vector of indices of the rows
in the incidence matrix |
Author(s)
Elvan Ceyhan
See Also
dom.num.greedy
, PEdom.num1D
,
PEdom.num.tri
, PEdom.num.nondeg
,
and Idom.numCSup.bnd.tri
Examples
n<-10
M<-matrix(sample(c(0,1),n^2,replace=TRUE),nrow=n)
diag(M)<-1
dom.num.greedy(M)
Idom.num.up.bnd(M,2)
dom.num.exact(M)