aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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();