9const double MIN = 0.000000001;
31 complementName_ =
"*";
44 T& division = *(T*)result;
45 getNextArgument(&first, tree);
46 getNextArgument(&second, tree);
49 division = fabs(second) > MIN ? first / second : 1.;
Div function primitive (Tree genotype)
void execute(void *result, Tree &tree)
Execute the primitive.
Base primitive class (Tree genotype).
Tree class - implements genotype as a tree.