ECF 1.5
IADiv.h
1#ifndef IADiv_h
2#define IADiv_h
3
4#include "ecf/tree/Div.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
14bool boundsContainZero(IABounds bounds);
15
16#endif // IADiv_h
Definition: IADiv.h:8
virtual void execute(void *result, Tree::Tree &tree)
Execute the primitive.
Definition: IADiv.cpp:7
Div function primitive (Tree genotype)
Definition: Div.h:17
Tree class - implements genotype as a tree.
Definition: Tree_c.h:29