a Code for the Combination of Indirect and Direct Constraints on High Energy Physics Models Logo
gslpp_special_functions.cpp
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2017 HEPfit Collaboration
3  *
4  *
5  * For the licensing terms see doc/COPYING.
6  */
7 
8 /*
9  * File: gslpp_special_functions.h
10  * Author: marco
11  *
12  * Created on 14 marzo 2017, 17.56
13  */
14 
15 #include <gsl/gsl_sf_zeta.h>
16 #include <gsl/gsl_sf_dilog.h>
17 #include <gsl/gsl_sf_clausen.h>
19 
21  return gsl_sf_zeta_int(i);
22 }
23 
25  return gsl_sf_clausen(x);
26 }
27 
29  return gsl_sf_dilog(x);
30 }
gslpp_special_functions::zeta
double zeta(int i)
Definition: gslpp_special_functions.cpp:20
gslpp_special_functions.h
gslpp_special_functions::dilog
double dilog(double x)
Definition: gslpp_special_functions.cpp:28
gslpp_special_functions::clausen
double clausen(double x)
Definition: gslpp_special_functions.cpp:24