← Back
Editing: gamma.hpp
#ifndef PYTHONIC_MATH_GAMMA_HPP #define PYTHONIC_MATH_GAMMA_HPP #include "pythonic/include/math/gamma.hpp" #include "pythonic/utils/functor.hpp" #include <cmath> PYTHONIC_NS_BEGIN namespace math { double gamma(double x) { return std::tgamma(x); } } PYTHONIC_NS_END #endif
Save File
Cancel