View source: R/AuxDomination.R
dom.num.exact | R Documentation |
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).
dom.num.exact(Inc.Mat)
Inc.Mat |
A square matrix consisting of 0's and 1's which represents the incidence matrix of a graph or digraph. |
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 |
Elvan Ceyhan
dom.num.greedy
, PEdom.num1D
,
PEdom.num.tri
, PEdom.num.nondeg
,
and Idom.numCSup.bnd.tri
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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.