%PDF- %PDF-
| Direktori : /proc/thread-self/root/lib/python3/dist-packages/pythran/pythonic/numpy/ |
| Current File : //proc/thread-self/root/lib/python3/dist-packages/pythran/pythonic/numpy/complex.hpp |
#ifndef PYTHONIC_NUMPY_COMPLEX_HPP
#define PYTHONIC_NUMPY_COMPLEX_HPP
#include "pythonic/include/numpy/complex.hpp"
#include "pythonic/utils/functor.hpp"
#include "pythonic/types/complex.hpp"
PYTHONIC_NS_BEGIN
namespace numpy
{
namespace details
{
std::complex<double> complex(double v, double v2)
{
return {v, v2};
}
}
#define NUMPY_NARY_FUNC_NAME complex
#define NUMPY_NARY_FUNC_SYM details::complex
#include "pythonic/types/numpy_nary_expr.hpp"
}
PYTHONIC_NS_END
#endif