Last data update: 2014.03.03

R: Uniform Crossover operation on the two vectors of bytes
UniformCrossOverR Documentation

Uniform Crossover operation on the two vectors of bytes

Description

This function is a C++ wrapper for crossing-over of two byte vectors of candidate solutions

Usage

UniformCrossOver(bytes1, bytes2)

Arguments

bytes1

A vector of bytes of the first parent

bytes2

A vector of bytes of the second parent

Value

List of two byte vectors of offspring

Author(s)

Mehmet Hakan Satman - mhsatman@istanbul.edu.tr

See Also

OnePointCrossOver

UniformCrossOverOnDoublesUsingBytes

Examples

b1 <- DoubleVectorToBytes(c(56.54, 89.7666, 98.565))
b2 <- DoubleVectorToBytes(c(79.76, 56.4443, 34.22121))
result <- UniformCrossOver(b1,b2)
print(ByteVectorToDoubles(result[[1]]))
print(ByteVectorToDoubles(result[[2]]))

Results