ECF 1.5
IAConstTerminal.h
1#ifndef IAConstTerminal_h
2#define IAConstTerminal_h
3
4#include "ecf/tree/Terminal.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
14typedef boost::shared_ptr<IAConstTerminal> IAConstTerminalP;
15
16#endif // IAConstTerminal_h
virtual void execute(void *result, Tree::Tree &tree)
Execute the primitive.
Terminal tree node class (Tree genotype).
Definition: Terminal.h:16
Tree class - implements genotype as a tree.
Definition: Tree_c.h:29