From fr.teodoro at gmail.com Tue May 13 22:12:46 2008 From: fr.teodoro at gmail.com (=?ISO-8859-1?Q?F=E1bio_Roberto_Teodoro?=) Date: Tue, 13 May 2008 23:12:46 -0300 Subject: [galib] Deb package for GAlib Message-ID: <482A4A9E.8060102@gmail.com> Anyone knows if GAlib have a .deb package? If it doesn't exist already i will make one myself, to distribute to my users that are using a debian based distro. Will send the package to this list too. TIA From fr.teodoro at gmail.com Sat May 17 23:03:58 2008 From: fr.teodoro at gmail.com (=?ISO-8859-1?Q?F=E1bio_Roberto_Teodoro?=) Date: Sun, 18 May 2008 00:03:58 -0300 Subject: [galib] galib debian package Message-ID: <482F9C9E.1090200@gmail.com> Here is the debian package of galib i've made. Enjoy! -------------- next part -------------- A non-text attachment was scrubbed... Name: galib_2.4.7-1_i386.deb Type: application/x-debian-package Size: 318276 bytes Desc: not available Url : http://mailman.mit.edu/pipermail/galib/attachments/20080518/e6456963/galib_2.4.7-1_i386.bin From fr.teodoro at gmail.com Sun May 25 16:38:35 2008 From: fr.teodoro at gmail.com (=?ISO-8859-1?Q?F=E1bio_Roberto_Teodoro?=) Date: Sun, 25 May 2008 17:38:35 -0300 Subject: [galib] Error initializing floats Message-ID: <4839CE4B.1020807@gmail.com> Doing some experiments with the GARealGenome, i stated that if the lower bound of gene is -inf (-std::numeric_limits::infinity()) the GARandomFloat() always return -nan. I think that, for example: if i set the allele as [-inf, +inf] it should return any float. Follow is the excerpt from my debug session: GARandomFloat (low=-inf, high=inf) at /usr/include/ga/garandom.h:106 106 float val=high-low; val*=_GA_RND(); return val+low; (gdb) print val $47 = inf (gdb) print val+low $48 = -nan(0x8000000000000) Now I can't think of a solution for this, or maybe this can be done in another way in GAlib. If this is really a bug I'll try to fix it and post a patch to this list. Any sugestion is wellcome. TIA