Hi, This is a part of my code. I based this code on the example of message #140. Thanks, Tom namespace Beagle { typedef WrapperT< double > VDouble; template <>...
Error: creating testTransportSendTCPIPOp.exe .libs/lt-testTransportSendTCPIPOp.exe.c: In function `main': .libs/lt-testTransportSendTCPIPOp.exe.c:79: warning:...
Hi Tom, Ah, I see your problem. Typedef in C++ are not real types, they are just synonyms. From the compiler side, WrapperT<double> and VDouble are the same...
Algis, I think that's rude to send such raw error messages to the mailing without some introduction, or at least a greeting and few words to identify you and...
Hi Christian, many thanks for your help in resolving my problem. Your explanations have been very clear to me and very useful. Thanks, Tom ... just ... the ......
Hello group, I am a student currently working on my MSc thesis, on the topic of Kernel function generation using Genetic Programming. In a prior phase I have...
Arjan Gijsberts
a.gijsberts@...
Jun 4, 2007 1:33 am
1026
Hi, After having done two different double types, I have defined primitives for each type. I have now a ADD_D ( adding two DDouble ) primitive and a ADD_D1...
Hi Arjan, ... That's nice. You might already know it, but I did some work during my postdoc last year, on evolving kernel functions with GP. See my paper at ...
Hi, It is difficult to say anything about that, unless you provide the detailled error messages you are receiving. But as a pure guess, I would advice you to...
Hi Christian, your guess was good. I was not using a different primitive name for each of the adding primitives. Thanks, Tom ... using a ... I ... name ... ...
Hello Christian, I am sorry for my icivility. Thank you for help to compile beagle on windows with mingw. Your recommendation to compile with ./configure...
Hi Algis, That is an issue with my code in TestTransportReceiveTCPIPOp.cpp. I should have used the technique that Christian recommended. To fix this issue...
... Hi Christian, Thank you for your quick and helpful reply! ... my ... I have read your paper, as it is one of the few on evolving kernel functions using GP....
Hi all, I have launched a 100-population and 10-generation run. I have printed the fitness for each individual. Then I have extracted the data from beagle.log,...
Hi Tom, Statistics are computed on the whole population, including individuals that have not be modified (so that they didn't get their fitness re-evaluated)....
I have OpenBEAGLE 3.0.1 and I am linking it to some external code. Under SUSE 10.2, if I configure OpenBEAGLE with "--prefix=`pwd`" (as well as the code I'm...
Hi Tom, One way to get around your "install" issue would be to specify, for linking, the library that Beagle produces. If, for example, you're using GP then...
Tom, another thing... you could try turning off compression using the command line flag "-OBms.write.compress=0". If that makes things happy then you may have...
Hi, I'm about to start my MSc project. I'm going to either use the Beagle framework, or my own implementation based on Beagle. It all boils down to how easily...
Hi Emyr, Yes, it is easy to plug in your own Randomizer. However, I don't think you'll need to. Beagle uses a library called PACC to do that work. PACC...
Dear all, I have a quick question. Does open Beagle's genetic programming process follow John Koza's description of genetic programming? thanks, Linge ... ...
Hi Linge, I guess the short answer is "pretty much". Christian can give you all the specific details but here are my ten cents: There are a few differences: *...
I am getting the following error when implementing a bit-string GA after a generation. Beagle::AssertException: From file "EvaluationOp.cpp", line 112 : ...
Hi Emyr, ... Well, I don't know exactly what you what to do, so I can be quite very specific in my advices. The main design goal of Open BEAGLE is genericity,...
Hi Tom, Please provide me your configuration file, so I can inspect it. I have the intuition the problem is with this file -- you probably don't have a ...
Hi everyone, I want to make a copy of the current Deme and this is what i did: Deme tmpDeme = ioDeme; but the programming aborted and said that the pointer is...