Exemplo n.º 1
0
double gsl_sf_coupling_RacahW(int two_ja, int two_jb, int two_jc,
                          int two_jd, int two_je, int two_jf)
{
  EVAL_RESULT(gsl_sf_coupling_RacahW_e(two_ja, two_jb, two_jc,
                                      two_jd, two_je, two_jf,
                                      &result));
}
Exemplo n.º 2
0
    /**
     * C++ version of gsl_sf_coupling_RacahW_e().
     * @param two_ja Coupling coefficient in half-integer units
     * @param two_jb Coupling coefficient in half-integer units
     * @param two_jc Coupling coefficient in half-integer units
     * @param two_jd Coupling coefficient in half-integer units
     * @param two_je Coupling coefficient in half-integer units
     * @param two_jf Coupling coefficient in half-integer units
     * @param result The result as a @c gsl::sf::result object
     * @return GSL_SUCCESS or GSL_EDOM or GSL_EOVERFLW
     */
    inline int coupling_RacahW_e( int two_ja, int two_jb, int two_jc, int two_jd, int two_je, int two_jf,
				  result& result ){
      return gsl_sf_coupling_RacahW_e( two_ja, two_jb, two_jc, two_jd, two_je, two_jf, &result ); }