RDKit
Open-source cheminformatics and machine learning.
Loading...
Searching...
No Matches
boost_numpy.h
Go to the documentation of this file.
1// Boost python numpy available in Boost 1.63+
2// Boost python numeric removed in Boost 1.65+
3#include <RDGeneral/export.h>
4#if BOOST_VERSION < 106500
5#include <boost/python/numeric.hpp>
6typedef boost::python::numeric::array NumpyArrayType;
7#else
8#include <boost/python/numpy.hpp>
9typedef boost::python::numpy::ndarray NumpyArrayType;
10#endif
boost::python::numeric::array NumpyArrayType
Definition boost_numpy.h:6