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:
parent
94a13c6d53
commit
600b08a7f6
1 changed files with 2 additions and 3 deletions
|
|
@ -47,14 +47,13 @@ using namespace std;
|
||||||
|
|
||||||
typedef enum {Variable, UFunction, BFunction, BOperator, Const} Type;
|
typedef enum {Variable, UFunction, BFunction, BOperator, Const} Type;
|
||||||
|
|
||||||
|
typedef double (*BinaryFunction)(const double,const double);
|
||||||
|
typedef double (*UnaryFunction)(const double);
|
||||||
|
|
||||||
struct Operation
|
struct Operation
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
|
|
||||||
|
|
||||||
typedef double (*BinaryFunction)(const double,const double);
|
|
||||||
typedef double (*UnaryFunction)(const double);
|
|
||||||
typedef unsigned int VariableID;
|
typedef unsigned int VariableID;
|
||||||
typedef string Label;
|
typedef string Label;
|
||||||
|
|
||||||
|
|
|
||||||
Reference in a new issue