mutEdgeExchange {mcMST} | R Documentation |
One-edge-exchange mutator for edge list representation of spanning trees.
Description
Each edge is replaced with another feasible edge with probability p. By default p = 1/m where m is the number of edges, i.e., in expectation one edge is replaced. The operators maintains the spanning tree property, i.e., the resulting edge list is indeed the edge list of a spanning tree.
Usage
mutEdgeExchange(ind, p = 1/ncol(ind), instance = NULL)
Arguments
ind |
[ |
p |
[ |
instance |
[ |
Value
[matrix(2, m)
] Mutated edge list.
See Also
Evolutionary multi-objective algorithm mcMSTEmoaBG
Other mcMST EMOA mutators:
mutKEdgeExchange()
,
mutSubforestMST()
,
mutSubgraphMST()
,
mutUniformPruefer()
[Package mcMST version 1.1.1 Index]