ECF 1.5
IALog.h
1#ifndef IALog_h
2#define IALog_h
3
4#include "Log.h"
5#include "IAPrimitive.h"
6
8{
9public:
10 virtual void execute(void* result, Tree::Tree& tree);
11 virtual IABounds calculateBounds(Tree::IATree& tree);
12};
13
14#endif // IALog_h
Definition: IALog.h:8
virtual void execute(void *result, Tree::Tree &tree)
Execute the primitive.
Definition: IALog.cpp:7
Log function primitive (Tree genotype)
Definition: Log.h:14
Tree class - implements genotype as a tree.
Definition: Tree_c.h:29