File indexing completed on 2025-02-21 10:03:53
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022 #ifndef __GSL_SF_COUPLING_H__
0023 #define __GSL_SF_COUPLING_H__
0024
0025 #include <gsl/gsl_sf_result.h>
0026
0027 #undef __BEGIN_DECLS
0028 #undef __END_DECLS
0029 #ifdef __cplusplus
0030 # define __BEGIN_DECLS extern "C" {
0031 # define __END_DECLS }
0032 #else
0033 # define __BEGIN_DECLS
0034 # define __END_DECLS
0035 #endif
0036
0037 __BEGIN_DECLS
0038
0039
0040
0041
0042
0043
0044
0045 int gsl_sf_coupling_3j_e(int two_ja, int two_jb, int two_jc,
0046 int two_ma, int two_mb, int two_mc,
0047 gsl_sf_result * result
0048 );
0049 double gsl_sf_coupling_3j(int two_ja, int two_jb, int two_jc,
0050 int two_ma, int two_mb, int two_mc
0051 );
0052
0053
0054
0055
0056
0057
0058
0059 int gsl_sf_coupling_6j_e(int two_ja, int two_jb, int two_jc,
0060 int two_jd, int two_je, int two_jf,
0061 gsl_sf_result * result
0062 );
0063 double gsl_sf_coupling_6j(int two_ja, int two_jb, int two_jc,
0064 int two_jd, int two_je, int two_jf
0065 );
0066
0067
0068
0069
0070
0071
0072
0073
0074 int gsl_sf_coupling_RacahW_e(int two_ja, int two_jb, int two_jc,
0075 int two_jd, int two_je, int two_jf,
0076 gsl_sf_result * result
0077 );
0078 double gsl_sf_coupling_RacahW(int two_ja, int two_jb, int two_jc,
0079 int two_jd, int two_je, int two_jf
0080 );
0081
0082
0083
0084
0085
0086
0087
0088
0089 int gsl_sf_coupling_9j_e(int two_ja, int two_jb, int two_jc,
0090 int two_jd, int two_je, int two_jf,
0091 int two_jg, int two_jh, int two_ji,
0092 gsl_sf_result * result
0093 );
0094 double gsl_sf_coupling_9j(int two_ja, int two_jb, int two_jc,
0095 int two_jd, int two_je, int two_jf,
0096 int two_jg, int two_jh, int two_ji
0097 );
0098
0099
0100
0101
0102
0103
0104
0105
0106
0107
0108
0109
0110
0111
0112 #ifndef GSL_DISABLE_DEPRECATED
0113 int gsl_sf_coupling_6j_INCORRECT_e(int two_ja, int two_jb, int two_jc,
0114 int two_jd, int two_je, int two_jf,
0115 gsl_sf_result * result
0116 );
0117 double gsl_sf_coupling_6j_INCORRECT(int two_ja, int two_jb, int two_jc,
0118 int two_jd, int two_je, int two_jf
0119 );
0120 #endif
0121
0122
0123 __END_DECLS
0124
0125 #endif