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...
Hi Christian, after some search related to what you said I finally fixed the problem: I don't know if it helped to switch the line to ...CA2CT ... because my ...
Hello, I'm facing a little problem with the hall of fame in a GA optimization. I want to control its size. In mono-objective, there is no problem. In...
Hello Bastien, ... You put the finger on a small but real incoherence with the knapsack example. The point is that the knapsack example use the default ...
Hi, In a previous message #759, it was indicated how to get the best individual in each generation (which could be different from the best individual in the...
Hello, Your message is not totally clear. What do you want precisely? To extract the best-of-generation individual in your fitnesse evaluation operator? If so,...
Hi Christian, You got it. You got what I need. Let me say that what you proposed worked fine! and better than this, you took time to explain (write) how to do...