diff --git a/eo/app/gpsymreg/node.h b/eo/app/gpsymreg/node.h index 362aae40..85aa4479 100644 --- a/eo/app/gpsymreg/node.h +++ b/eo/app/gpsymreg/node.h @@ -47,14 +47,13 @@ using namespace std; typedef enum {Variable, UFunction, BFunction, BOperator, Const} Type; +typedef double (*BinaryFunction)(const double,const double); +typedef double (*UnaryFunction)(const double); struct Operation { public: - - typedef double (*BinaryFunction)(const double,const double); - typedef double (*UnaryFunction)(const double); typedef unsigned int VariableID; typedef string Label;