the gpsymreg code has been slightly altered to allow compilation using the

Intel C++ Compiler for Linux.

Other compilers should not be affected.

A slightly different makefile is needed
This commit is contained in:
jeggermo 2002-02-04 14:28:00 +00:00
commit 600b08a7f6

View file

@ -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;