Advertisement
Guest User

Untitled

a guest
Apr 12th, 2013
1,233
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Java 0.30 KB | None | 0 0
  1.         // All mutation and no play makes queen a dull girl.
  2.         float mutationModifier = housing.getMutationModifier(genome, mate, 1.0f);
  3.         if(mutationModifier > 10) {
  4.             if(housing.getWorld().rand.nextFloat()*100 < 0.4 * ((mutationModifier*mutationModifier) - 100))
  5.                 offspring.setIsNatural(false);
  6.         }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement