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