I get this error when I try to compile openbeagle 1.0.1 in the above combination... c++ -DHAVE_CONFIG_H -I. -I. -I../../beagle/include/beagle ...
Juan Julian Merelo Gu...
jmerelo@...
Mar 4, 2003 11:07 am
95
Hi JJ, ... The autodetection of the isfinite macro in the configure script has probably failed. Did you already compile the framework using an older version of...
Hi, I have try to compiling the beagle project with MS.Net. All works OK except for no beagle.lib, ga.lib and gp.lib created in the related debug/release...
yuehui_chen
yuehui_chen@...
Mar 5, 2003 2:56 am
97
Hi, You must compile the libraries before compiling any other examples/projects. To compile the libraries, follow the instructions given on the web site. You...
Hi, I have read the new howto pdf file and follows that to compile the beagle project in order get three lib files. But i am failed. The warning info is ...
Hi, Did you copy the file config.hpp.msvcpp as file config.hpp, as I explained in the HOWTO? Be sure that you use the original config.hpp.msvcpp file. ...
Dear Christian and all: In my modified DisplayOp.cpp, I try to print out the hall of fame individuals. I access them as follows using a pointer. But after I...
Jianjun Hu
hujianju@...
Mar 9, 2003 2:40 am
102
Hi Jianjun, ... Your problem is that you are breaking a fundamental rule with the use of smart pointers, that is to take reference only on individually ...
Hi, Christian: Thanks a lot for your comment. One quick question: why when I turn on the hall of fame, but the maximum fitness displayed on each generation...
Jianjun Hu
hujianju@...
Mar 10, 2003 4:47 am
104
Hi Jianjun, The hall-of-fame is completely independant of the population and the evolutionary process. It is only a copy of the best so far individuals found....
Hi Jianjun, ... 1) Modify the files Makefile.am in your directory HFC where the headers and sources are found (i.e. beagle/HFC/include/beagle/HFC/Makefile.am, ...
Thank you very much! Jianjun ... From: Christian Gagne [mailto:cgagne@...] Sent: 2003?3?11? 9:41 To: Jianjun Hu Cc: Open BEAGLE List Subject: Re: How...
Jianjun Hu
hujianju@...
Mar 11, 2003 2:52 pm
107
Hi, all: I just tried to compile the Bealge1.0.1 on Sun Unix solaris. The beagle lib is compiled successfully. But when I tried to compile the example of GA,...
Jianjun Hu
hujianju@...
Mar 12, 2003 3:39 am
108
Hi, ... First question: did you modify in any ways the project files of release 1.0.1? I suppose yes as you link on the file libbeagle-GA.la that is in ...
Hi, Chistian: I redownload the tarball from your website again and compile it on the Unix. I still have the same problem with GA/GP examples. It seems Sun...
Jianjun Hu
hujianju@...
Mar 12, 2003 3:08 pm
110
Hi, I see now the libbeagle-GA.la file is a file for libtool. but when I run bootstrap, I always get this error: ====================== <83...
Jianjun Hu
hujianju@...
Mar 12, 2003 3:16 pm
111
... I'm quite sure that's because the autotools are not well installed on your Unix network. Automake seems not to be aware of libtool, which explain that it...
Hi, You may try to libtoolize your project. To do so, execute command 'libtoolize' in the main open beagle directory. If it didn't work, I'll try to compile...
Here is my configuration of unix and tools: Unix: Sun Solaris 5.9 gcc: 2.95.3 autoconf,2.57 aotumake 1.4 libtool 1.4.3 What are your versions? version Machine...
Jianjun Hu
hujianju@...
Mar 12, 2003 4:51 pm
114
Hi Jianjun and everyone else, I was able to compile with some efforts Open BEAGLE on Solaris. I was also able to compile and run the maxfct and symbreg...
Dear Christian: Thank you very much for your friendly help all the way. I reinstall all the tools and following your new script and now it works! Combined with...
Jianjun Hu
hujianju@...
Mar 13, 2003 8:58 pm
116
... Nice to hear that you are now able to compile Beagle on Solaris. I will add this to the documentation. ... I had a problem similar in the past. The stuff...
Hi, the access to halloffame still doesn't work. And I can't find your use of it also. so ? ... When I use this, I get a error: Beagle::Individual::Bag&...
Jianjun Hu
hujianju@...
Mar 14, 2003 2:22 am
118
Hi Jianjun, ... Try this: const Beagle::Individual::Bag& thisHall = castObjectT<const Beagle::Individual::Bag&>(inVivarium[k]->getHallOfFame()); ... Or try...
Thanks. This one works. const Beagle::Individual::Bag& thisHall = inVivarium[k]->getHallOfFame(); ... From: Christian Gagn [mailto:cgagne@...] Sent:...
Jianjun Hu
hujianju@...
Mar 14, 2003 2:48 am
120
Hi, Since current beagle put the hallofdeme update in the operate function, while for steadystate model, there are cases where we only use evaluate rather than...
Jianjun Hu
hujianju@...
Mar 14, 2003 3:20 am
121
I am wondering which file is the single exe file after compiling beagle example on unix. for example, when I compiler parity example, I copied the parity file...
Jianjun Hu
hujianju@...
Mar 14, 2003 5:24 am
122
Hi, ... This is a trick of libtool. The file you see in your compilation directory is in fact a script created by libtool that set the environment variables to...
... I checked and you're right. This is somewhat a bug as I was not intended. I will look on how to fix it for the next release. Thanks for signaling it. ... ...