ECF 1.5
Sqrt.h
1#ifndef Sqrt_h
2#define Sqrt_h
3
4#include <ecf/tree/Primitive.h>
5
6namespace Tree {
7namespace Primitives {
8
13class Sqrt : public Primitive
14{
15public:
16 Sqrt(void);
17 void execute(void* result, Tree& tree);
18 ~Sqrt(void);
19};
20
21}
22}
23
24#endif
Base primitive class (Tree genotype).
Definition: Primitive.h:37
Sqrt function primitive (Tree genotype)
Definition: Sqrt.h:14
void execute(void *result, Tree &tree)
Execute the primitive.
Definition: Sqrt.cpp:20
Tree class - implements genotype as a tree.
Definition: Tree_c.h:29