00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028 #ifndef NRAO_LAPACK_H
00029 #define NRAO_LAPACK_H
00030
00031
00032 #include <casa/aips.h>
00033
00034 #define NEED_FORTRAN_UNDERSCORES
00035
00036 #if defined(NEED_FORTRAN_UNDERSCORES)
00037 #define sgetrf sgetrf_
00038 #define dgetrf dgetrf_
00039 #define cgetrf cgetrf_
00040 #define zgetrf zgetrf_
00041 #define sgetri sgetri_
00042 #define dgetri dgetri_
00043 #define cgetri cgetri_
00044 #define zgetri zgetri_
00045 #define ssolvx ssolvx_
00046 #define dsolvx dsolvx_
00047 #define csolvx csolvx_
00048 #define zsolvx zsolvx_
00049 #define sblda sblda_
00050 #define cndnm cndnm_
00051 #define MAIN MAIN_
00052 #endif
00053
00054 extern "C" {
00055
00056 void sgetrf(int &, int &, float *, int &, int *, int &);
00057 void dgetrf(int &, int &, double *, int &, int *, int &);
00058 void cgetrf(int &, int &, void *, int &, int *, int &);
00059 void zgetrf(int &, int &, void *, int &, int *, int &);
00060
00061
00062 void sgetri(int &, float *, int &, const int *, float *, int &, int &);
00063 void dgetri(int &, double *, int &, const int *, double *, int &, int &);
00064 void cgetri(int &, void *, int &, const int *, void *, int &, int &);
00065 void zgetri(int &, void *, int &, const int *, void *, int &, int &);
00066
00067
00068 void ssolvx(Int &, Int &, float *, Int &, const float *, Int &,
00069 const Int *, float *, Int &, float *, Int &, float *,
00070 float *, Int &, float *, float *, float *, Int *);
00071 void dsolvx(Int &, Int &, double *, Int &, const double *, Int &,
00072 const Int *, double *, Int &, double *, Int &, double *,
00073 double *, Int &, double *, double *, double *, Int *);
00074 void csolvx(Int &, Int &, void *, Int &, const void *, Int &,
00075 const Int *, void *, Int &, void *, Int &, float *,
00076 float *, Int &, float *, float *, void *, float *);
00077 void zsolvx(Int &, Int &, void *, Int &, const void *, Int &,
00078 const Int *, void *, Int &, void *, Int &, double *,
00079 double *, Int &, double *, double *, void *, double *);
00080
00081
00082 void sblda(Int &, Int &, float &, float &, Int &, Int &, float *, int &);
00083 void cndnm(Int &, Int &, float *, Int &, float &, float &, int &);
00084
00085
00086
00087 void MAIN_();
00088 };
00089
00090 #endif