In jenetics library, following code is given in alter() methid of Mutator class:
final double p = pow(_probability, 1.0/3.0);
Can anyone please explain the purpose of calculating this new probabilty for mutation? How is it beneficial? How can we use this class to implement One-Position or Point Mutation?