mirror of
https://github.com/rdkit/rdkit.git
synced 2026-06-03 21:44:30 +08:00
11 lines
342 B
C
11 lines
342 B
C
// Boost python numpy available in Boost 1.63+
|
|
// Boost python numeric removed in Boost 1.65+
|
|
#include <RDGeneral/export.h>
|
|
#if BOOST_VERSION < 106500
|
|
#include <boost/python/numeric.hpp>
|
|
typedef boost::python::numeric::array NumpyArrayType;
|
|
#else
|
|
#include <boost/python/numpy.hpp>
|
|
typedef boost::python::numpy::ndarray NumpyArrayType;
|
|
#endif
|