mutSubgraphMST {mcMST} | R Documentation |
Subgraph-mutator for edge list representation.
Description
mutSubgraphMST
selects a random edge e = (u, v) and traverses
the tree starting form u and v respectively until a connected subtree of at most
sigma
edges is selected. Then the subtree is replaced with the optimal spanning subtree
regarding one of the objectives with equal probability.
Usage
mutSubgraphMST(
ind,
sigma = floor(ncol(ind)/2),
scalarize = FALSE,
instance = NULL
)
Arguments
ind |
[ |
sigma |
[ |
scalarize |
[ |
instance |
[ |
Value
[matrix(2, m)
] Mutated edge list.
See Also
Evolutionary multi-objective algorithm mcMSTEmoaBG
Other mcMST EMOA mutators:
mutEdgeExchange()
,
mutKEdgeExchange()
,
mutSubforestMST()
,
mutUniformPruefer()