sandbox/prouvost/utils/mathematica.h

    The C-export function of mathematica uses non-standard notations for the functions…

    double Power(double x,double y){
       return pow(x,y);
    }
    
    #define E (exp(1.))
    
    double Cos(double x) {
       return cos(x);
    }
    
    double Sin(double x) {
       return sin(x);
    }