aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2009-10-04 00:51:33 +0000
committerDimitri Sokolyuk <demon@dim13.org>2009-10-04 00:51:33 +0000
commit88748e986f9af46bdefda5d0885aa0ac52af8c6c (patch)
tree0dd58f90e357bcf49842d2d6c7ecc6ee936a8c28
parent53d5a280d243a05aabb278351c55bd3e08943c1f (diff)
reduce mutation probability
-rw-r--r--weasel.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/weasel.c b/weasel.c
index 49d35dc..525bd62 100644
--- a/weasel.c
+++ b/weasel.c
@@ -201,7 +201,7 @@ main(int argc, char **argv)
struct intargs args;
extern int LINES;
int population = 1000;
- int mutationrate = 100; /* 1/n */
+ int mutationrate = 1000; /* 1/n 0.1% */
int i, c, t;
while ((c = getopt(argc, argv, "m:p:")) != -1)