00001
00002
00004
00005
00006
00007
00008
00009
00011
00012 #ifndef _RELAX_H
00013 #define _RELAX_H
00014
00015
00016 extern class MDFrame *__conj_simframe;
00017
00018
00019
00020
00021
00022
00023 #ifdef __cplusplus
00024 #ifdef __gps
00025 void CGRelax(void (*func)(int,double*,double *, double*),
00026 int n,double acc,int maxfn,double dfpred,
00027 double x[],double g[],double *f, double *buffer);
00028 #else
00029 extern "C" void CGRelax(void (*func)(int,double*,double *, double*),
00030 int n,double acc,int maxfn,double dfpred,
00031 double x[],double g[],double *f, double *buffer);
00032 #endif
00033 #endif
00034
00035 #endif // _RELAX_H
00036
00037