aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2009-10-05 02:02:59 +0000
committerDimitri Sokolyuk <demon@dim13.org>2009-10-05 02:02:59 +0000
commitede9d7f38235702021aba12592618b11284e88d0 (patch)
tree2bae90b4aa90fee863b4542ed0cd94c000a5b1fe
parentcc21d0e2206b706dd0fa7eed2ab425623db1081e (diff)
be more verbose at end
-rw-r--r--weasel.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/weasel.c b/weasel.c
index 8712a5e..3fcca5c 100644
--- a/weasel.c
+++ b/weasel.c
@@ -268,7 +268,8 @@ main(int argc, char **argv)
pthread_mutex_destroy(&mutexsum);
free(threads);
- printw("\nhalted after %d generations\n", nthreads * i / population);
+ printw("\nhalted after %d generations of %d population (%d births)\n",
+ nthreads * i / population, population, nthreads * i);
refresh();
endwin();