blob: 8a628bd5cc4f77af63e221e876493bdf6dbcf3dd (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
#ifndef PYTHONIC_INCLUDE_CMATH_TANH_HPP
#define PYTHONIC_INCLUDE_CMATH_TANH_HPP
#include "pythonic/include/utils/functor.hpp"
#include "pythonic/include/types/complex.hpp"
#include <cmath>
PYTHONIC_NS_BEGIN
namespace cmath
{
DEFINE_FUNCTOR_2(tanh, std::tanh);
}
PYTHONIC_NS_END
#endif
|