flexiblesusy is hosted by Hepforge, IPPP Durham
FlexibleSUSY
Li.hpp
Go to the documentation of this file.
1// ====================================================================
2// This file is part of Polylogarithm.
3//
4// Polylogarithm is licenced under the MIT License.
5// ====================================================================
6
7#ifndef LI_H
8#define LI_H
9
10#include <complex>
11#include <cstdint>
12
13namespace flexiblesusy {
14
16std::complex<double> Li(int64_t n, const std::complex<double>&) noexcept;
17
18} // namespace flexiblesusy
19
20#endif
std::complex< double > Li(int64_t n, const std::complex< double > &z) noexcept
Complex polylogarithm .
Definition: Li.cpp:181