diff --git a/cmake b/cmake index 74c1e60e72c449b242c524d8406b1f4bf549f498..4bf6c7fc970aa5ef35627f2c7cca79eb9275bec8 160000 --- a/cmake +++ b/cmake @@ -1 +1 @@ -Subproject commit 74c1e60e72c449b242c524d8406b1f4bf549f498 +Subproject commit 4bf6c7fc970aa5ef35627f2c7cca79eb9275bec8 diff --git a/include/eigenpy/angle-axis.hpp b/include/eigenpy/angle-axis.hpp index 829195e17e4a85c50bd749c007b673eaee31ff92..3f0377c8030177b0ab32da468304b729bd45083d 100644 --- a/include/eigenpy/angle-axis.hpp +++ b/include/eigenpy/angle-axis.hpp @@ -9,8 +9,6 @@ namespace eigenpy { -namespace bp = boost::python; - template <typename AngleAxis> class AngleAxisVisitor; diff --git a/include/eigenpy/copyable.hpp b/include/eigenpy/copyable.hpp index b6d8c5ed21eb0d495a6b5e3a28c99bcc2226ef14..4180ccb4e2adedb8adab9c3648e5f3c24340eb6f 100644 --- a/include/eigenpy/copyable.hpp +++ b/include/eigenpy/copyable.hpp @@ -9,8 +9,6 @@ namespace eigenpy { -namespace bp = boost::python; - /// /// \brief Add the Python method copy to allow a copy of this by calling the /// copy constructor. diff --git a/include/eigenpy/decompositions/EigenSolver.hpp b/include/eigenpy/decompositions/EigenSolver.hpp index feab32eca2b9e652fcbb8568f48c84a06f70320c..3bc447d6a2d12975b01405db41c57e71e71a9439 100644 --- a/include/eigenpy/decompositions/EigenSolver.hpp +++ b/include/eigenpy/decompositions/EigenSolver.hpp @@ -23,7 +23,6 @@ struct EigenSolverVisitor template <class PyClass> void visit(PyClass& cl) const { - namespace bp = boost::python; cl.def(bp::init<>("Default constructor")) .def(bp::init<Eigen::DenseIndex>( bp::arg("size"), "Default constructor with memory preallocation")) @@ -76,7 +75,6 @@ struct EigenSolverVisitor } static void expose(const std::string& name) { - namespace bp = boost::python; bp::class_<Solver>(name.c_str(), bp::no_init).def(EigenSolverVisitor()); } diff --git a/include/eigenpy/decompositions/LDLT.hpp b/include/eigenpy/decompositions/LDLT.hpp index 3d289d85e1d0d34c802a5094222991721861b35a..347405411f7580a8f99949abb3b286f643f97dd6 100644 --- a/include/eigenpy/decompositions/LDLT.hpp +++ b/include/eigenpy/decompositions/LDLT.hpp @@ -28,7 +28,6 @@ struct LDLTSolverVisitor template <class PyClass> void visit(PyClass &cl) const { - namespace bp = boost::python; cl.def(bp::init<>(bp::arg("self"), "Default constructor")) .def(bp::init<Eigen::DenseIndex>( bp::args("self", "size"), @@ -106,7 +105,6 @@ struct LDLTSolverVisitor } static void expose(const std::string &name) { - namespace bp = boost::python; bp::class_<Solver>( name.c_str(), "Robust Cholesky decomposition of a matrix with pivoting.\n\n" diff --git a/include/eigenpy/decompositions/LLT.hpp b/include/eigenpy/decompositions/LLT.hpp index 0fdfea4dd3e708913819a2fb424f18fc3e96433f..b0a1e1b57d0165d5de41fb8d97f38a2e3973a5ab 100644 --- a/include/eigenpy/decompositions/LLT.hpp +++ b/include/eigenpy/decompositions/LLT.hpp @@ -28,7 +28,6 @@ struct LLTSolverVisitor template <class PyClass> void visit(PyClass &cl) const { - namespace bp = boost::python; cl.def(bp::init<>(bp::arg("self"), "Default constructor")) .def(bp::init<Eigen::DenseIndex>( bp::args("self", "size"), @@ -99,7 +98,6 @@ struct LLTSolverVisitor } static void expose(const std::string &name) { - namespace bp = boost::python; bp::class_<Solver>( name.c_str(), "Standard Cholesky decomposition (LL^T) of a matrix and associated " diff --git a/include/eigenpy/decompositions/SelfAdjointEigenSolver.hpp b/include/eigenpy/decompositions/SelfAdjointEigenSolver.hpp index f7ac469cdfd0d875043af6d1c3276475b8d8723b..cd1ddd42b4160788d1dd53e3b910afb56e531ff7 100644 --- a/include/eigenpy/decompositions/SelfAdjointEigenSolver.hpp +++ b/include/eigenpy/decompositions/SelfAdjointEigenSolver.hpp @@ -24,7 +24,6 @@ struct SelfAdjointEigenSolverVisitor template <class PyClass> void visit(PyClass& cl) const { - namespace bp = boost::python; cl.def(bp::init<>(bp::arg("self"), "Default constructor")) .def(bp::init<Eigen::DenseIndex>( bp::args("self", "size"), @@ -84,7 +83,6 @@ struct SelfAdjointEigenSolverVisitor } static void expose(const std::string& name) { - namespace bp = boost::python; bp::class_<Solver>(name.c_str(), bp::no_init) .def(SelfAdjointEigenSolverVisitor()); } diff --git a/include/eigenpy/decompositions/minres.hpp b/include/eigenpy/decompositions/minres.hpp index 747cbcd895790b1d627bbdb64a520aec80b05e19..f2de4e0ca1963bd1cdee18c9e93d80f1fec0c872 100644 --- a/include/eigenpy/decompositions/minres.hpp +++ b/include/eigenpy/decompositions/minres.hpp @@ -28,7 +28,6 @@ struct IterativeSolverBaseVisitor template <class PyClass> void visit(PyClass& cl) const { - namespace bp = boost::python; cl.def("analyzePattern", (Solver & (Solver::*)(const Eigen::EigenBase<MatrixType>& matrix)) & Solver::analyzePattern, @@ -137,7 +136,6 @@ struct MINRESSolverVisitor template <class PyClass> void visit(PyClass& cl) const { - namespace bp = boost::python; cl.def(bp::init<>(bp::arg("self"), "Default constructor")) .def(bp::init<MatrixType>( bp::args("self", "matrix"), @@ -155,7 +153,6 @@ struct MINRESSolverVisitor } static void expose(const std::string& name) { - namespace bp = boost::python; bp::class_<Solver, boost::noncopyable>( name.c_str(), "A minimal residual solver for sparse symmetric problems.\n" diff --git a/include/eigenpy/eigen-to-python.hpp b/include/eigenpy/eigen-to-python.hpp index 6472ff6c7939f9c7f1eb842ec8a0feb31468a564..96f2afdec77d5de88a302af5505e81c71f436843 100644 --- a/include/eigenpy/eigen-to-python.hpp +++ b/include/eigenpy/eigen-to-python.hpp @@ -59,7 +59,6 @@ struct to_python_indirect< } // namespace boost namespace eigenpy { -namespace bp = boost::python; template <typename MatType, typename _Scalar> struct EigenToPy { diff --git a/include/eigenpy/eigenpy.hpp b/include/eigenpy/eigenpy.hpp index 57657466f113084004a159eaf018b62209f30304..f9e5de95231ca98775e32c4ef17b20a07434f575 100644 --- a/include/eigenpy/eigenpy.hpp +++ b/include/eigenpy/eigenpy.hpp @@ -9,6 +9,7 @@ #include "eigenpy/fwd.hpp" #include "eigenpy/deprecated.hpp" #include "eigenpy/eigen-typedef.hpp" +#include "eigenpy/expose.hpp" #define ENABLE_SPECIFIC_MATRIX_TYPE(TYPE) \ ::eigenpy::enableEigenPySpecific<TYPE>(); diff --git a/include/eigenpy/fwd.hpp b/include/eigenpy/fwd.hpp index 5794f5233ba449b70c64c60005e9c06b485688cb..3c30d6639e3828b85379d46c5e738fb41242f9b5 100644 --- a/include/eigenpy/fwd.hpp +++ b/include/eigenpy/fwd.hpp @@ -70,6 +70,12 @@ #include <boost/python.hpp> #include <boost/python/scope.hpp> +namespace eigenpy { + +namespace bp = boost::python; + +} + #define NO_IMPORT_ARRAY #include "eigenpy/numpy.hpp" #undef NO_IMPORT_ARRAY @@ -91,8 +97,6 @@ #define EIGENPY_UNUSED_VARIABLE(var) (void)(var) -#include "eigenpy/expose.hpp" - #ifdef EIGENPY_WITH_CXX11_SUPPORT #include <memory> #define EIGENPY_SHARED_PTR_HOLDER_TYPE(T) ::std::shared_ptr<T> diff --git a/include/eigenpy/geometry-conversion.hpp b/include/eigenpy/geometry-conversion.hpp index 37b583fd7e03d7911280d0cd456db3950f4ecffa..c88dc336aca04381077956d50bec1393ef0332d0 100644 --- a/include/eigenpy/geometry-conversion.hpp +++ b/include/eigenpy/geometry-conversion.hpp @@ -10,8 +10,6 @@ namespace eigenpy { -namespace bp = boost::python; - template <typename Scalar, int Options = 0> struct EulerAnglesConvertor { typedef typename Eigen::Matrix<Scalar, 3, 1, Options> Vector3; diff --git a/include/eigenpy/numpy-type.hpp b/include/eigenpy/numpy-type.hpp index cac1c4db62c10e3e3e372fe56eef3a18d08c3237..96086854f0d4eaea39bf10081aae597661aa054f 100644 --- a/include/eigenpy/numpy-type.hpp +++ b/include/eigenpy/numpy-type.hpp @@ -14,7 +14,6 @@ #include "eigenpy/scalar-conversion.hpp" namespace eigenpy { -namespace bp = boost::python; template <typename Scalar> bool np_type_is_convertible_into_scalar(const int np_type) { diff --git a/include/eigenpy/quaternion.hpp b/include/eigenpy/quaternion.hpp index af04779654b3e0db6877d2ad12477685f7bf6bd9..a5051c154317ad9d4ff559a3c7aa813fc1777c96 100644 --- a/include/eigenpy/quaternion.hpp +++ b/include/eigenpy/quaternion.hpp @@ -65,8 +65,6 @@ class ExceptionIndex : public Exception { } }; -namespace bp = boost::python; - template <typename QuaternionDerived> class QuaternionVisitor; diff --git a/include/eigenpy/register.hpp b/include/eigenpy/register.hpp index 137ff7d0ac3ce1ba613069a8b8032f880816bb27..64d09d76e5d94a9cbfc94d5dd4be9fcc74f28b3f 100644 --- a/include/eigenpy/register.hpp +++ b/include/eigenpy/register.hpp @@ -31,7 +31,6 @@ struct EIGENPY_DLLAPI Register { template <typename Scalar> static PyTypeObject *getPyType() { - namespace bp = boost::python; if (!isNumpyNativeType<Scalar>()) { const PyTypeObject *const_py_type_ptr = bp::converter::registered_pytype<Scalar>::get_pytype(); @@ -53,7 +52,6 @@ struct EIGENPY_DLLAPI Register { template <typename Scalar> static PyArray_Descr *getPyArrayDescr() { - namespace bp = boost::python; if (!isNumpyNativeType<Scalar>()) { return getPyArrayDescr(getPyType<Scalar>()); } else { diff --git a/include/eigenpy/registration.hpp b/include/eigenpy/registration.hpp index 7998907586b9cab9191f2c0b4528e0974374b84e..f7f77b69af936de47bbfd281b0b0d24db0c6b72f 100644 --- a/include/eigenpy/registration.hpp +++ b/include/eigenpy/registration.hpp @@ -3,12 +3,13 @@ * Copyright 2018-2019, INRIA */ -#include "eigenpy/fwd.hpp" - #ifndef __eigenpy_registration_hpp__ #define __eigenpy_registration_hpp__ +#include "eigenpy/fwd.hpp" + namespace eigenpy { + /// /// \brief Check at runtime the registration of the type T inside the boost /// python registry. @@ -19,8 +20,6 @@ namespace eigenpy { /// template <typename T> inline bool check_registration() { - namespace bp = boost::python; - const bp::type_info info = bp::type_id<T>(); const bp::converter::registration* reg = bp::converter::registry::query(info); if (reg == NULL) @@ -40,8 +39,6 @@ inline bool check_registration() { /// template <typename T> inline bool register_symbolic_link_to_registered_type() { - namespace bp = boost::python; - if (eigenpy::check_registration<T>()) { const bp::type_info info = bp::type_id<T>(); const bp::converter::registration* reg = diff --git a/include/eigenpy/solvers/BFGSPreconditioners.hpp b/include/eigenpy/solvers/BFGSPreconditioners.hpp index 06b897e5dd6c02bc2fcde82d453939fd201792e4..d0cde6cc2fdf0a1f908f13509cc2d5c0dccf4091 100644 --- a/include/eigenpy/solvers/BFGSPreconditioners.hpp +++ b/include/eigenpy/solvers/BFGSPreconditioners.hpp @@ -24,8 +24,6 @@ namespace eigenpy { -namespace bp = boost::python; - template <typename Preconditioner> struct BFGSPreconditionerBaseVisitor : public bp::def_visitor<BFGSPreconditionerBaseVisitor<Preconditioner> > { diff --git a/include/eigenpy/solvers/BasicPreconditioners.hpp b/include/eigenpy/solvers/BasicPreconditioners.hpp index 053468296e8a9456f6bd6095bcaa14132468d1af..ae2b98274879cbbcd52b32af852fe64214cfc4de 100644 --- a/include/eigenpy/solvers/BasicPreconditioners.hpp +++ b/include/eigenpy/solvers/BasicPreconditioners.hpp @@ -23,8 +23,6 @@ namespace eigenpy { -namespace bp = boost::python; - template <typename Preconditioner> struct PreconditionerBaseVisitor : public bp::def_visitor<PreconditionerBaseVisitor<Preconditioner> > { diff --git a/include/eigenpy/solvers/ConjugateGradient.hpp b/include/eigenpy/solvers/ConjugateGradient.hpp index 3e4afbc0d9b0523a28556513d0952a6da27ca38c..0d291b22d700071c206582546f98a26740cc644a 100644 --- a/include/eigenpy/solvers/ConjugateGradient.hpp +++ b/include/eigenpy/solvers/ConjugateGradient.hpp @@ -24,8 +24,6 @@ namespace eigenpy { -namespace bp = boost::python; - template <typename ConjugateGradient> struct ConjugateGradientVisitor : public boost::python::def_visitor< diff --git a/include/eigenpy/solvers/IterativeSolverBase.hpp b/include/eigenpy/solvers/IterativeSolverBase.hpp index 28d8aff65332dc44f3de3d86ef6d0aba4efc97ce..7bbdcb36c1145b9528d11859903208de4637f902 100644 --- a/include/eigenpy/solvers/IterativeSolverBase.hpp +++ b/include/eigenpy/solvers/IterativeSolverBase.hpp @@ -22,8 +22,6 @@ namespace eigenpy { -namespace bp = boost::python; - template <typename IterativeSolver> struct IterativeSolverVisitor : public boost::python::def_visitor< IterativeSolverVisitor<IterativeSolver> > { diff --git a/include/eigenpy/solvers/LeastSquaresConjugateGradient.hpp b/include/eigenpy/solvers/LeastSquaresConjugateGradient.hpp index 59e3091211374bbaf105eab47f827ff533408bbc..a84a737844d2c08920ac023dc5cf56bed69195e4 100644 --- a/include/eigenpy/solvers/LeastSquaresConjugateGradient.hpp +++ b/include/eigenpy/solvers/LeastSquaresConjugateGradient.hpp @@ -24,8 +24,6 @@ namespace eigenpy { -namespace bp = boost::python; - template <typename LeastSquaresConjugateGradient> struct LeastSquaresConjugateGradientVisitor : public boost::python::def_visitor<LeastSquaresConjugateGradientVisitor< diff --git a/include/eigenpy/solvers/SparseSolverBase.hpp b/include/eigenpy/solvers/SparseSolverBase.hpp index 74a8ced9fea7051b465bd58926173855185fae95..cf1ad620a3594dc529c8ca06a532dcf5751a57d4 100644 --- a/include/eigenpy/solvers/SparseSolverBase.hpp +++ b/include/eigenpy/solvers/SparseSolverBase.hpp @@ -21,8 +21,6 @@ namespace eigenpy { -namespace bp = boost::python; - template <typename SparseSolver> struct SparseSolverVisitor : public bp::def_visitor<SparseSolverVisitor<SparseSolver> > { diff --git a/include/eigenpy/std-map.hpp b/include/eigenpy/std-map.hpp index b6748f5712c57a7cf209e93cb50d605c1c61b854..9b010e900426ecd31849bcbd9cffd5c9b9e6e777 100644 --- a/include/eigenpy/std-map.hpp +++ b/include/eigenpy/std-map.hpp @@ -27,8 +27,6 @@ struct overload_base_get_item_for_std_map private: static boost::python::object base_get_item( boost::python::back_reference<Container&> container, PyObject* i_) { - namespace bp = ::boost::python; - index_type idx = convert_index(container.get(), i_); typename Container::iterator i = container.get().find(idx); if (i == container.get().end()) { @@ -43,7 +41,6 @@ struct overload_base_get_item_for_std_map } static index_type convert_index(Container& /*container*/, PyObject* i_) { - namespace bp = ::boost::python; bp::extract<key_type const&> i(i_); if (i.check()) { return i(); diff --git a/include/eigenpy/std-vector.hpp b/include/eigenpy/std-vector.hpp index eddf03ecfeaeb599b9497d81781edb906b15c47b..8d732158a05cad260e1c00ca7b0a01eb1315c80c 100644 --- a/include/eigenpy/std-vector.hpp +++ b/include/eigenpy/std-vector.hpp @@ -31,8 +31,6 @@ namespace details { /// \brief Check if a PyObject can be converted to an std::vector<T>. template <typename T> bool from_python_list(PyObject *obj_ptr, T *) { - namespace bp = ::boost::python; - // Check if it is a list if (!PyList_Check(obj_ptr)) return false; @@ -53,8 +51,6 @@ bool from_python_list(PyObject *obj_ptr, T *) { template <typename vector_type, bool NoProxy> struct build_list { static ::boost::python::list run(vector_type &vec) { - namespace bp = ::boost::python; - bp::list bp_list; for (size_t k = 0; k < vec.size(); ++k) { bp_list.append(boost::ref(vec[k])); @@ -66,8 +62,6 @@ struct build_list { template <typename vector_type> struct build_list<vector_type, true> { static ::boost::python::list run(vector_type &vec) { - namespace bp = ::boost::python; - typedef bp::iterator<vector_type> iterator; return bp::list(iterator()(vec)); } @@ -92,8 +86,6 @@ struct overload_base_get_item_for_std_vector private: static boost::python::object base_get_item( boost::python::back_reference<Container &> container, PyObject *i_) { - namespace bp = ::boost::python; - index_type idx = convert_index(container.get(), i_); typename Container::iterator i = container.get().begin(); std::advance(i, idx); @@ -109,7 +101,6 @@ struct overload_base_get_item_for_std_vector } static index_type convert_index(Container &container, PyObject *i_) { - namespace bp = boost::python; bp::extract<long> i(i_); if (i.check()) { long index = i(); @@ -279,8 +270,6 @@ struct StdContainerFromPythonList { static void construct( PyObject *obj_ptr, boost::python::converter::rvalue_from_python_stage1_data *memory) { - namespace bp = boost::python; - // Extract the list bp::object bp_obj(bp::handle<>(bp::borrowed(obj_ptr))); bp::list bp_list(bp_obj); @@ -410,8 +399,6 @@ struct StdVectorPythonVisitor static void expose( const std::string &class_name, const std::string &doc_string, const boost::python::def_visitor<VisitorDerived> &visitor) { - namespace bp = boost::python; - if (!register_symbolic_link_to_registered_type<vector_type>()) { bp::class_<vector_type> cl(class_name.c_str(), doc_string.c_str()); cl.def(StdVectorPythonVisitor()) diff --git a/include/eigenpy/user-type.hpp b/include/eigenpy/user-type.hpp index 310cefd2c7ae46b3ade60793238b63a9ce883e8f..e66b2d9f516169504fb8e5e3dfd4577775852632 100644 --- a/include/eigenpy/user-type.hpp +++ b/include/eigenpy/user-type.hpp @@ -286,7 +286,6 @@ bool registerCast(const bool safe) { template <typename T> boost::python::object getInstanceClass() { // Query into the registry for type T. - namespace bp = boost::python; bp::type_info type = bp::type_id<T>(); const bp::converter::registration* registration = bp::converter::registry::query(type); diff --git a/python/main.cpp b/python/main.cpp index b589c6c81bbfc1a8d8ea2f5bceca22348f051ebc..4aa48a648858818cfe5f04d9954d2af5ff378658 100644 --- a/python/main.cpp +++ b/python/main.cpp @@ -18,7 +18,6 @@ using namespace eigenpy; BOOST_PYTHON_MODULE(eigenpy_pywrap) { - namespace bp = boost::python; enableEigenPy(); bp::scope().attr("__version__") = eigenpy::printVersion(); diff --git a/src/decompositions/decompositions.cpp b/src/decompositions/decompositions.cpp index 1960b546a17028c830da570450d51253f463e8cb..50ebf97ccc79b5dca78198dcf1923d19d9462a5d 100644 --- a/src/decompositions/decompositions.cpp +++ b/src/decompositions/decompositions.cpp @@ -14,7 +14,6 @@ namespace eigenpy { void exposeDecompositions() { using namespace Eigen; - namespace bp = boost::python; EigenSolverVisitor<MatrixXd>::expose("EigenSolver"); SelfAdjointEigenSolverVisitor<MatrixXd>::expose("SelfAdjointEigenSolver"); diff --git a/src/numpy-type.cpp b/src/numpy-type.cpp index 7014419ff9461f1e4e3fbbf1ccd5c72c7c6aaa7d..148319b84492e633cff1f89b7b1f7733e511337e 100644 --- a/src/numpy-type.cpp +++ b/src/numpy-type.cpp @@ -7,7 +7,6 @@ #include <patchlevel.h> // For PY_MAJOR_VERSION namespace eigenpy { -namespace bp = boost::python; NumpyType& NumpyType::getInstance() { static NumpyType instance; diff --git a/src/register.cpp b/src/register.cpp index aed23b7d381df700841a856e653782b4b63f5e21..ec22decec96d057134761e0e87b11121c019d0af 100644 --- a/src/register.cpp +++ b/src/register.cpp @@ -36,8 +36,6 @@ int Register::registerNewType( PyArray_CopySwapFunc* copyswap, PyArray_CopySwapNFunc* copyswapn, PyArray_DotFunc* dotfunc, PyArray_FillFunc* fill, PyArray_FillWithScalarFunc* fillwithscalar) { - namespace bp = boost::python; - bp::tuple tp_bases_extended( bp::make_tuple(bp::handle<>(bp::borrowed(&PyGenericArrType_Type)))); tp_bases_extended +=