ublas_interop.hpp 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  1. ///////////////////////////////////////////////////////////////////////////////
  2. // Copyright 2013 John Maddock. Distributed under the Boost
  3. // Software License, Version 1.0. (See accompanying file
  4. // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
  5. #ifndef BOOST_MP_UBLAS_HPP
  6. #define BOOST_MP_UBLAS_HPP
  7. namespace boost { namespace numeric { namespace ublas {
  8. template<class V>
  9. class sparse_vector_element;
  10. template <class V, class Backend, multiprecision::expression_template_option ExpressionTemplates>
  11. inline bool operator == (const sparse_vector_element<V>& a, const ::boost::multiprecision::number<Backend, ExpressionTemplates>& b)
  12. {
  13. typedef typename sparse_vector_element<V>::const_reference ref_type;
  14. return static_cast<ref_type>(a) == b;
  15. }
  16. template<class X, class Y>
  17. struct promote_traits;
  18. template <class Backend1, boost::multiprecision::expression_template_option ExpressionTemplates1, class Backend2, boost::multiprecision::expression_template_option ExpressionTemplates2>
  19. struct promote_traits<boost::multiprecision::number<Backend1, ExpressionTemplates1>, boost::multiprecision::number<Backend2, ExpressionTemplates2> >
  20. {
  21. typedef boost::multiprecision::number<Backend1, ExpressionTemplates1> number1_t;
  22. typedef boost::multiprecision::number<Backend2, ExpressionTemplates2> number2_t;
  23. typedef typename mpl::if_c<
  24. is_convertible<number1_t, number2_t>::value && !is_convertible<number2_t, number1_t>::value,
  25. number2_t, number1_t
  26. >::type promote_type;
  27. };
  28. template <class Backend1, boost::multiprecision::expression_template_option ExpressionTemplates1, class Arithmetic>
  29. struct promote_traits<boost::multiprecision::number<Backend1, ExpressionTemplates1>, Arithmetic>
  30. {
  31. typedef boost::multiprecision::number<Backend1, ExpressionTemplates1> promote_type;
  32. };
  33. template <class Arithmetic, class Backend1, boost::multiprecision::expression_template_option ExpressionTemplates1>
  34. struct promote_traits<Arithmetic, boost::multiprecision::number<Backend1, ExpressionTemplates1> >
  35. {
  36. typedef boost::multiprecision::number<Backend1, ExpressionTemplates1> promote_type;
  37. };
  38. template <class Backend1, boost::multiprecision::expression_template_option ExpressionTemplates1, class tag, class Arg1, class Arg2, class Arg3, class Arg4>
  39. struct promote_traits<boost::multiprecision::number<Backend1, ExpressionTemplates1>, boost::multiprecision::detail::expression<tag, Arg1, Arg2, Arg3, Arg4> >
  40. {
  41. typedef boost::multiprecision::number<Backend1, ExpressionTemplates1> number1_t;
  42. typedef boost::multiprecision::detail::expression<tag, Arg1, Arg2, Arg3, Arg4> expression_type;
  43. typedef typename expression_type::result_type number2_t;
  44. typedef typename promote_traits<number1_t, number2_t>::promote_type promote_type;
  45. };
  46. template <class tag, class Arg1, class Arg2, class Arg3, class Arg4, class Backend1, boost::multiprecision::expression_template_option ExpressionTemplates1>
  47. struct promote_traits<boost::multiprecision::detail::expression<tag, Arg1, Arg2, Arg3, Arg4>, boost::multiprecision::number<Backend1, ExpressionTemplates1> >
  48. {
  49. typedef boost::multiprecision::number<Backend1, ExpressionTemplates1> number1_t;
  50. typedef boost::multiprecision::detail::expression<tag, Arg1, Arg2, Arg3, Arg4> expression_type;
  51. typedef typename expression_type::result_type number2_t;
  52. typedef typename promote_traits<number1_t, number2_t>::promote_type promote_type;
  53. };
  54. template <class tag, class Arg1, class Arg2, class Arg3, class Arg4, class tagb, class Arg1b, class Arg2b, class Arg3b, class Arg4b>
  55. struct promote_traits<boost::multiprecision::detail::expression<tag, Arg1, Arg2, Arg3, Arg4>, boost::multiprecision::detail::expression<tagb, Arg1b, Arg2b, Arg3b, Arg4b> >
  56. {
  57. typedef boost::multiprecision::detail::expression<tag, Arg1, Arg2, Arg3, Arg4> expression1_t;
  58. typedef typename expression1_t::result_type number1_t;
  59. typedef boost::multiprecision::detail::expression<tagb, Arg1b, Arg2b, Arg3b, Arg4b> expression2_t;
  60. typedef typename expression2_t::result_type number2_t;
  61. };
  62. }}} // namespace
  63. #endif