#ifndef PYTHONIC_NUMPY_RANDOM_RAND_HPP #define PYTHONIC_NUMPY_RANDOM_RAND_HPP #include "pythonic/include/numpy/random/rand.hpp" #include "pythonic/numpy/random/random.hpp" #include "pythonic/types/ndarray.hpp" #include "pythonic/types/tuple.hpp" #include "pythonic/utils/functor.hpp" PYTHONIC_NS_BEGIN namespace numpy { namespace random { template types::ndarray> rand(T... shape) { return random(types::array{{shape...}}); } double rand() { return random(); } } } PYTHONIC_NS_END #endif