Displaying 2 results from an estimated 2 matches for "lcontext".
Did you mean:
context
2010 Mar 14
1
Segfault Problem c++ R interface (detailed)
...lity:
%f\n",lMutSwapProba);
Rprintf(" Swap point mutation distribution proba.:
%f\n",lMutSwapDistribProba);
Rprintf(" Random number generator seed value: %f\n",lSeed);
// Create evolution context
Rprintf("Creating evolution context\n");
Context lContext;
lContext.mRandom.seed(lSeed);
lContext.insert(new Add);
lContext.insert(new Subtract);
lContext.insert(new Multiply);
lContext.insert(new Divide);
lContext.insert(new TokenT<double>("X", 0.0));
lContext.insert(new Ephemeral);
// Sample equation on 20 random points...
2015 Feb 14
2
[PATCH 0/2] Change guestfs__*
libguestfs has used double and triple underscores in identifiers.
These aren't valid for global names in C++.
(http://stackoverflow.com/a/228797)
These large but completely mechanical patches change the illegal
identifiers to legal ones.
Rich.