Hi, I wish I could get a primitive from another primitive. Better explaining, I did a primitive called Bcond (abbreviation of Boundary Condition) and I have...
Hi Christian, Now I changed a little bit my code, but I'm getting some error. Is that where I made the mistake? void Bcond::execute(GP::Datum& outResult,...
... The Primitive::getValue(Object&) is special... It doesn't return any object, it rather copy its value in the reference passed Object. This is for a...
Thanks, ... I put nearly the same because the '-' was getting in overloading mistakes messages from the compiler. So I did: lResult = lArg1.getWrappedValue() -...
Hi, I am interested to implement call some ADFs in my GP. Trying to understand de 6-even-parity problem, I have found some doubts. As I understood, the ADFs in...
Hi Dan, ... No. There is 6 inputs to the parity problems, the 6 input bits. But we use 2 ADFs, each with 2 arguments. ... The ADF primitive is a call to the...
Hi, I am considering using Beagle to implement context-free grammar constrained GP (making use of strongly typed mechanism) . Could anyone tell me wether...
Hi Yin, For your specific case, I don't think you will need to heavily customize Open BEAGLE. A generic constraints handling mechanism already exists in Open...
Hi fellowship of Open BEAGLE, To coincide with GECCO 2003 (Genetic and Evolutionary Computation COnference), I am pleased to annonce that the Distributed...
Yes. I don't like the blind validation methods to ensure feasible solutions. It's better to implement some direct methods. for strongly type, I used my own...
Jianjun Hu
hujianju@...
Jul 9, 2003 2:51 am
263
Dear Christian: I am trying to find a way to keep unique fitness individuals in the HallOfDeme. I tried to add the fitness equal test in the...
Jianjun Hu
hujianju@...
Jul 9, 2003 2:51 am
264
... In fact, I think that the Individual::isEqual is not used at all for the insertion of individuals in the hall-of-fame. The method Individual::isLess is...
Hi. I've written some postscript and C++ code that takes an Open Beagle tree and converts it to a pretty postscript EPS file. For example, (+(E[0.54],x)) ...
I have just encounterd a problem with an individual with a fairly long tree (some 700 characters). The individual was not parsing correctly and I've pinned the...
Hi, I imagine that the best individual of each generation could be captured by some stack (I don't think is HOF, am I right?). What is the name of that stack?...
This is really cool! I'm glad to see Open BEAGLE users developing such tools! I plan to develop visualization tools for Open BEAGLE in the middle range. I'll...
... This problem's tricky. To my knowledge Beagle doesn't sort the individuals in a generation. So, you've somehow got to pick off the best individual from...
... captured ... [snip] ... make ... i) ... Beagle ... small ... I've got a third question: 3) Would it be much work to add an open() method to InputStream and...
I've looked over the past posts, but I'm still not sure how to do this. I've been struggling for awhile now on how to read an individual in from a file and...
... Ah, silly bug. This is the second time I'm not sure whether getline read n or n-1 characters. ... Well, not a short time after making it, Marc Parizeau...
... In fact, the operator < is already defined for the Beagle Object as call to the isLess method. See doxygen document of class Beagle::Object, you will get...
... You are surely talking about the PipedInputStream and PipedOutputStream. Short answer is yes, it will be complicated, as Piped Streams works only with...
... It depends on the EA you are using. With GA, you don't have anything different to do, just create a PipedInputStream on a C++ input file stream, much as...
... I forgot that the function was more user-friendly that I tough: instead of taking a GP context, it only needs a plain GP system. So it will be more simple...
Hi everyone, Since the first public release of Open BEAGLE, a lot a work have been done. But, a lot still need to be done, in order to make the framework the...
Hi everyone, I will add a Frequently Asked Questions (FAQ) section to the Open BEAGLE documentation quite next. For this purpose I am asking each of you, ...
Hi Dan, ... First of all, try the command-line option -OBhelp with your application. You will then have the full description of the parameters. Usually this of...