Search the web
Sign In
New User? Sign Up
openbeagle · Open BEAGLE
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 251 - 280 of 1467   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
251
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...
Dan Posternak
danpost2112
Offline Send Email
Jul 2, 2003
11:11 pm
252
Hi Dan, The easiest way is to pass by the context -> the system -> the primitive super set -> the desired primitive set. Then, with the method ...
Christian Gagne
raspingoo
Offline Send Email
Jul 3, 2003
2:21 am
253
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,...
Dan Posternak
danpost2112
Offline Send Email
Jul 3, 2003
1:45 pm
254
... 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...
Christian Gagne
raspingoo
Offline Send Email
Jul 3, 2003
1:53 pm
255
Thanks, ... I put nearly the same because the '-' was getting in overloading mistakes messages from the compiler. So I did: lResult = lArg1.getWrappedValue() -...
Dan Posternak
danpost2112
Offline Send Email
Jul 3, 2003
2:34 pm
256
Please see the attached zip file for details....
openbeagle-unsubscrib...
Send Email
Jul 5, 2003
10:58 pm
257
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...
Dan Posternak
danpost2112
Offline Send Email
Jul 7, 2003
3:37 pm
258
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...
Christian Gagne
raspingoo
Offline Send Email
Jul 7, 2003
4:04 pm
259
Hi, I am considering using Beagle to implement context-free grammar constrained GP (making use of strongly typed mechanism) . Could anyone tell me wether...
shan_yin2002
Offline Send Email
Jul 8, 2003
1:46 am
260
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...
Christian Gagne
raspingoo
Offline Send Email
Jul 8, 2003
12:43 pm
261
Hi fellowship of Open BEAGLE, To coincide with GECCO 2003 (Genetic and Evolutionary Computation COnference), I am pleased to annonce that the Distributed...
Marc Dubreuil
mdubreuilus
Offline Send Email
Jul 9, 2003
12:20 am
262
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@...
Send Email
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@...
Send Email
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...
Christian Gagne
raspingoo
Offline Send Email
Jul 9, 2003
3:04 am
265
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)) ...
Matthew Walker
mattgwwalker
Offline Send Email
Jul 15, 2003
6:04 am
266
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...
Matthew Walker
mattgwwalker
Offline Send Email
Jul 17, 2003
4:58 am
267
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?...
Dan Posternak
danpost2112
Offline Send Email
Jul 17, 2003
2:52 pm
268
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...
Christian Gagne
raspingoo
Offline Send Email
Jul 17, 2003
10:31 pm
269
... 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...
Matthew Walker
mattgwwalker
Offline Send Email
Jul 18, 2003
1:02 am
270
... 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...
Matthew Walker
mattgwwalker
Offline Send Email
Jul 18, 2003
1:54 am
271
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...
drewmarek
Offline Send Email
Jul 18, 2003
9:49 am
272
... 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...
Christian Gagne
raspingoo
Offline Send Email
Jul 18, 2003
4:06 pm
273
... 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...
Christian Gagne
raspingoo
Offline Send Email
Jul 18, 2003
4:16 pm
274
... You are surely talking about the PipedInputStream and PipedOutputStream. Short answer is yes, it will be complicated, as Piped Streams works only with...
Christian Gagne
raspingoo
Offline Send Email
Jul 18, 2003
4:23 pm
275
... 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...
Christian Gagne
raspingoo
Offline Send Email
Jul 18, 2003
7:33 pm
276
... 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...
Christian Gagne
raspingoo
Offline Send Email
Jul 18, 2003
9:50 pm
277
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...
Christian Gagne
raspingoo
Offline Send Email
Jul 18, 2003
10:29 pm
278
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, ...
Christian Gagne
raspingoo
Offline Send Email
Jul 20, 2003
11:22 pm
279
Chris & all, I'd like to understand better the values and the influence of each parameter in the evolution process. Once I faced some problem with...
Dan Posternak
danpost2112
Offline Send Email
Jul 21, 2003
8:26 pm
280
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...
Christian Gagne
raspingoo
Offline Send Email
Jul 22, 2003
1:09 pm
Messages 251 - 280 of 1467   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help