|
From: <tim...@us...> - 2007-12-18 18:06:58
|
Revision: 4
http://sga.svn.sourceforge.net/sga/?rev=4&view=rev
Author: tim-watson
Date: 2007-12-18 10:06:54 -0800 (Tue, 18 Dec 2007)
Log Message:
-----------
Modified sga.c to tidy up layout of initial parameter display.
Modified Paths:
--------------
trunk/sga.c
Modified: trunk/sga.c
===================================================================
--- trunk/sga.c 2007-12-18 16:47:20 UTC (rev 3)
+++ trunk/sga.c 2007-12-18 18:06:54 UTC (rev 4)
@@ -112,9 +112,12 @@
/* display the significant parameter settings */
printf("--------------------------------------------------\n");
- printf("population size =%5d\tchromosone size =%5d\n", popsize, chromsize);
- printf("crossover rate =%5d\tmutation rate =%5d\n", crossrate, muterate);
- printf("fitness function =%5d\tboostfit =%5d\n", fitfunc, boostfit);
+ printf("population size =%5d chromosome size =%5d\n",
+ popsize, chromsize);
+ printf("crossover rate =%5d mutation rate =%5d\n",
+ crossrate, muterate);
+ printf("fitness function =%5d fitness boost =%5d\n",
+ fitfunc, boostfit);
printf("--------------------------------------------------\n");
/* initialise the population and the PRNG */
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
|