UniformCrossOverOnDoublesUsingBytes {mcga} | R Documentation |
Uniform Crossover operation on the two vectors of doubles using their byte representations
Description
This function is a C++ wrapper for crossing-over of two double vectors of candidate solutions using their byte representations
Usage
UniformCrossOverOnDoublesUsingBytes(d1, d2)
Arguments
d1 |
A vector of doubles of the first parent |
d2 |
A vector of doubles of the second parent |
Value
List of two double vectors of offspring
Author(s)
Mehmet Hakan Satman - mhsatman@istanbul.edu.tr
See Also
OnePointCrossOver
OnePointCrossOverOnDoublesUsingBytes
Examples
d1 <- runif(3)
d2 <- runif(3)
offspring <- UniformCrossOverOnDoublesUsingBytes(d1,d2)
print("Parents:")
print(d1)
print(d2)
print("Offspring:")
print(offspring[[1]])
print(offspring[[2]])
[Package mcga version 3.0.7 Index]