Skip to content
Snippets Groups Projects
Verified Commit eeb955a8 authored by Justin Carpentier's avatar Justin Carpentier
Browse files

core: use boost::numerics to simplify the code and make it more generic

parent f9ef66b2
No related branches found
No related tags found
No related merge requests found
// //
// Copyright (c) 2014-2020 CNRS INRIA // Copyright (c) 2014-2024 CNRS INRIA
// //
#ifndef __eigenpy_scalar_conversion_hpp__ #ifndef __eigenpy_scalar_conversion_hpp__
#define __eigenpy_scalar_conversion_hpp__ #define __eigenpy_scalar_conversion_hpp__
#include "eigenpy/config.hpp" #include "eigenpy/config.hpp"
#include <boost/numeric/conversion/conversion_traits.hpp>
namespace eigenpy { namespace eigenpy {
template <typename SCALAR1, typename SCALAR2> template <typename Source, typename Target>
struct FromTypeToType : public boost::false_type {}; struct FromTypeToType
: public boost::numeric::conversion_traits<Source, Target>::subranged {};
template <typename SCALAR>
struct FromTypeToType<SCALAR, SCALAR> : public boost::true_type {};
template <>
struct FromTypeToType<int, long> : public boost::true_type {};
template <>
struct FromTypeToType<int, float> : public boost::true_type {};
template <>
struct FromTypeToType<int, std::complex<float> > : public boost::true_type {};
template <>
struct FromTypeToType<int, double> : public boost::true_type {};
template <>
struct FromTypeToType<int, std::complex<double> > : public boost::true_type {};
template <>
struct FromTypeToType<int, long double> : public boost::true_type {};
template <>
struct FromTypeToType<int, std::complex<long double> >
: public boost::true_type {};
template <>
struct FromTypeToType<long, float> : public boost::true_type {};
template <>
struct FromTypeToType<long, std::complex<float> > : public boost::true_type {};
template <>
struct FromTypeToType<long, double> : public boost::true_type {};
template <>
struct FromTypeToType<long, std::complex<double> > : public boost::true_type {};
template <>
struct FromTypeToType<long, long double> : public boost::true_type {};
template <>
struct FromTypeToType<long, std::complex<long double> >
: public boost::true_type {};
template <>
struct FromTypeToType<float, std::complex<float> > : public boost::true_type {};
template <>
struct FromTypeToType<float, double> : public boost::true_type {};
template <>
struct FromTypeToType<float, std::complex<double> > : public boost::true_type {
};
template <>
struct FromTypeToType<float, long double> : public boost::true_type {};
template <>
struct FromTypeToType<float, std::complex<long double> >
: public boost::true_type {};
template <>
struct FromTypeToType<double, std::complex<double> > : public boost::true_type {
};
template <>
struct FromTypeToType<double, long double> : public boost::true_type {};
template <>
struct FromTypeToType<double, std::complex<long double> >
: public boost::true_type {};
} // namespace eigenpy } // namespace eigenpy
#endif // __eigenpy_scalar_conversion_hpp__ #endif // __eigenpy_scalar_conversion_hpp__
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment