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 #include <RDGeneral/export.h>
4 #if BOOST_VERSION < 106500
5 #include <boost/python/numeric.hpp>
6 typedef boost::python::numeric::array NumpyArrayType;
7 #else
8 #include <boost/python/numpy.hpp>
9 typedef boost::python::numpy::ndarray NumpyArrayType;
10 #endif
boost::python::numeric::array NumpyArrayType
Definition: boost_numpy.h:6