I'm a newbie trying to understand BEAGLE and I would like to do something similar to the maxfctfloat example, but instead of limiting all parameter values to...
Super! Thanks for the quick and informative response! ... 1.79769e+308) ... scalar, which ... which limit ... values of ... vector. ... -1.79769e+308) ... ...
Hi, I would like to know how to get the best individual of each generation. I know that individulas in the Hall Of Fame can be get, but not in all cases the...
Hi, What you need is only to get the best individual of the population. To get the best-of-generation for a specific deme, the code would look like the...
I am integrating BEAGLE into a larger system and therefore I am not calling main() as in the BEAGLE examples. The problem is that I would like to call...
... Yes, totally. Open BEAGLE takes the argv/argc parameters given to the Evolver::initialise method as is, notwithstanding the _real_ values of argv/argc or...
Hello Nicolas and other Beagle users, I finally found time to investigate the problem that Nicolas observed with the GP constrained standard mutation. I...
I am trying to plug OB into a larger application. There is a particular libtool library "lib.la" to which I've added beagle libs and includes per the...
Hi, ... Well, I would say that you didn't specify a search path for the beagle-GP library via the -L option. Says the library beagle-GP is in directory...
Hello, I'm trying to change Open Beagle parameters directly in the code. I don't want to type ./myprogram -OBec.pop.size=50 for exemple. I followed the manual...
Hi, I think Christian might be on holiday at the moment, so I'll try to help you out. Firstly, the ultra-easy option: A Beagle program will try to read a...
Hi, Thanks for your answer and sorry I wasn't clear enough. I think I followed the different steps you described. I adapted the code from ZeroMin, and here is...
Christian: Can you see what's not right here? Bastien: I cannot see what might be wrong. My recommendation would be to pepper your code (and if necessary,...
Hi everyone, I am quite new to genetic programming and open beagle and am interested in learning more about this great tool and technique. I am wondering if...
Hi Paul, My ten cents would be to try to avoid them! No, honestly. The issue with loops and evolution is that an individual might just randomly ask to loop...
Hi Paul A finite loop in a tree, it's another tree with some repetitions. L-Systems are a model for that....
Alexandre Devert
devert@...
May 15, 2006 6:29 am
775
Hi, I followed your recommendations : I took the original example of ZeroMin to be sure my Evaluation Operator didn't cause any trouble. - I removed the...
Hello Bastien, Take a look to file GA/include/beagle/GA/CrossoverOnePointOpT.hpp, lines 103 to 126 to get an answer to this problem. template <class T> void...
Hi, I finally came up with a solution, even if it's not perfect. Let's take the example of zeromin. I changed the parameters in the file ZeroMinMain.cpp. Due...
Hello, ... The expected behavior is that changing them before the call to Evolver::initialize() change the default value, while changing after the call to...
Hello Christian, Thanks for your answer. I'm going to try to explain you the odd behaviour I was talking about in my previous message, with a simple exemple. ...
Hi Christian, thanks for the solution. It's working just fine. However I still have 2 questions. - Do I have to use getWrappedValue() or can I directly change...
Hi Bastien, ... That's ok, the assignation (operator=) and casting operators are correctly defined for the Bool type (and all other wrapper types) so you code...
I'm doing my first steps in Beagle and have immeadiatly problems. I wrote the symbolic regression example within a MVC Express project, which is configured ...
Hi, You're problem seems to come from the WIN32 version of the PACC_AssertM macro. Take a look to the file PACC/Util/Assert.hpp of beagle, line 55. ... The...