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...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 755 - 784 of 1467   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
755
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...
tom_mct
Offline Send Email
Apr 19, 2006
6:41 pm
756
Hi Tom, For sure it is possible. There is two parameters for real-valued GA that is used to limit the ranges of the optimized values, namely ...
Christian Gagné
raspingoo
Offline Send Email
Apr 19, 2006
7:11 pm
757
Super! Thanks for the quick and informative response! ... 1.79769e+308) ... scalar, which ... which limit ... values of ... vector. ... -1.79769e+308) ... ...
tom_mct
Offline Send Email
Apr 19, 2006
10:13 pm
758
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...
ob_user_2005
Offline Send Email
Apr 24, 2006
7:08 pm
759
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...
Christian Gagné
raspingoo
Offline Send Email
Apr 25, 2006
8:39 pm
760
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...
tom_mct
Offline Send Email
Apr 28, 2006
3:14 pm
761
... 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...
Christian Gagné
raspingoo
Offline Send Email
Apr 28, 2006
3:23 pm
762
Hello Nicolas and other Beagle users, I finally found time to investigate the problem that Nicolas observed with the GP constrained standard mutation. I...
Christian Gagné
raspingoo
Offline Send Email
May 2, 2006
10:28 am
763
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...
tom_mct
Offline Send Email
May 2, 2006
11:06 pm
764
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...
Christian Gagné
raspingoo
Offline Send Email
May 3, 2006
8:33 am
765
Don't know whether this will be of help, as I haven't tried the libtool route. I'm changing environment flags for autotools: export...
matt studley
hamsterchutney
Offline Send Email
May 3, 2006
9:34 am
766
Well, in some sort of combination of running aclocal, configure, and re-installing beagle, and after a reboot, it now works. Sorry for the trouble....
tom_mct
Offline Send Email
May 3, 2006
4:21 pm
767
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...
n4stybee
Offline Send Email
May 11, 2006
6:58 pm
768
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...
Matthew Walker
mattgwwalker
Offline Send Email
May 12, 2006
2:47 am
769
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...
n4stybee
Offline Send Email
May 12, 2006
7:21 am
770
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,...
Matthew Walker
mattgwwalker
Offline Send Email
May 13, 2006
5:31 am
771
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...
prthompson315
Offline Send Email
May 13, 2006
11:17 am
772
Sorry about last post - should have spell checked!...
prthompson315
Offline Send Email
May 13, 2006
6:58 pm
773
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...
Matthew Walker
mattgwwalker
Offline Send Email
May 14, 2006
3:49 am
774
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@...
Send Email
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...
n4stybee
Offline Send Email
May 15, 2006
7:27 am
776
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...
Christian Gagné
raspingoo
Offline Send Email
May 15, 2006
8:27 am
777
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...
n4stybee
Offline Send Email
May 16, 2006
6:59 am
778
Hello, ... The expected behavior is that changing them before the call to Evolver::initialize() change the default value, while changing after the call to...
Christian Gagné
raspingoo
Offline Send Email
May 16, 2006
3:04 pm
779
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. ...
n4stybee
Offline Send Email
May 17, 2006
2:38 pm
780
Hi Bastien, I see what is going wrong. The problem is in the following piece of code copied of your message. [...] boolHandle = new Bool(false) ; ...
Christian Gagné
raspingoo
Offline Send Email
May 17, 2006
7:33 pm
781
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...
n4stybee
Offline Send Email
May 19, 2006
7:52 am
782
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...
Christian Gagné
raspingoo
Offline Send Email
May 19, 2006
9:00 am
783
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 ...
Serethos
serethos_0
Offline Send Email
Jun 2, 2006
8:07 am
784
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...
Christian Gagné
raspingoo
Offline Send Email
Jun 2, 2006
9:09 am
Messages 755 - 784 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