ECF 1.5
IASub.h
1#ifndef IASub_h
2#define IASub_h
3
4#include "ecf/tree/Sub.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 // IASub_h
Definition: IASub.h:8
virtual void execute(void *result, Tree::Tree &tree)
Execute the primitive.
Definition: IASub.cpp:7
Sub function primitive (Tree genotype)
Definition: Sub.h:14
Tree class - implements genotype as a tree.
Definition: Tree_c.h:29