RDKit
Open-source cheminformatics and machine learning.
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 #if BOOST_VERSION < 106500
4 #include <boost/python/numeric.hpp>
5 typedef typename boost::python::numeric::array NumpyArrayType;
6 #else
7 #include <boost/python/numpy.hpp>
8 typedef typename boost::python::numpy::ndarray NumpyArrayType;
9 #endif
boost::python::numeric::array NumpyArrayType
Definition: boost_numpy.h:5