ECF 1.5
Cos.h
1#ifndef Cos_h
2#define Cos_h
3#include "Primitive.h"
4
5namespace Tree {
6namespace Primitives {
7
12class Cos : public Primitive
13{
14public:
15 Cos(void);
16 void execute(void* result, Tree& tree);
17 ~Cos(void);
18};
19
20}
21}
22
23#endif
Cos function primitive (Tree genotype)
Definition: Cos.h:13
void execute(void *result, Tree &tree)
Execute the primitive.
Definition: Cos.cpp:20
Base primitive class (Tree genotype).
Definition: Primitive.h:37
Tree class - implements genotype as a tree.
Definition: Tree_c.h:29