Learn R Programming

mcga (version 3.0.7)

ByteCodeMutation: Mutation operator for byte representation of double values

Description

This function is a C++ wrapper for mutating byte representation of a given candidate solution

Usage

ByteCodeMutation(bytes1, pmutation)

Value

Byte vector of mutated solution

Arguments

bytes1

A vector of bytes of a candidate solution

pmutation

Probability of mutation

Author

Mehmet Hakan Satman - mhsatman@istanbul.edu.tr

See Also

ByteCodeMutationUsingDoubles

Examples

Run this code
set.seed(1246)
print(pi)
bytes <- DoubleToBytes(pi)
mutated.bytes <- ByteCodeMutation(bytes, 0.10) 
new.var <- BytesToDouble(mutated.bytes)
print(new.var)

Run the code above in your browser using DataLab