applyMutation method

void applyMutation(
  1. Genome g,
  2. Connection c
)

Implementation

void applyMutation(Genome g, Connection c) {
  c.weight = Random().nextDouble() * 2 - 1;
}