blob: 8982931245701bdefefb95f9d5b8b4e794436185 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
#ifndef PYTHONIC_INCLUDE_SCIPY_SPECIAL_GAMMAINCINV_HPP
#define PYTHONIC_INCLUDE_SCIPY_SPECIAL_GAMMAINCINV_HPP
#include "pythonic/include/types/ndarray.hpp"
#include "pythonic/include/utils/functor.hpp"
#include "pythonic/include/utils/numpy_traits.hpp"
#include <xsimd/xsimd.hpp>
PYTHONIC_NS_BEGIN
namespace scipy
{
namespace special
{
namespace details
{
template <class T0, class T1>
double gammaincinv(T0 x, T1 y);
}
#define NUMPY_NARY_FUNC_NAME gammaincinv
#define NUMPY_NARY_FUNC_SYM details::gammaincinv
#include "pythonic/include/types/numpy_nary_expr.hpp"
}
}
PYTHONIC_NS_END
#endif
|