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