norm_result_type.hpp 821 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. [auto_generated]
  3. boost/numeric/odeint/algebra/norm_result_type.hpp
  4. [begin_description]
  5. Calculates the type of the norm_inf operation for container types
  6. [end_description]
  7. Copyright 2013 Karsten Ahnert
  8. Copyright 2013 Mario Mulansky
  9. Distributed under the Boost Software License, Version 1.0.
  10. (See accompanying file LICENSE_1_0.txt or
  11. copy at http://www.boost.org/LICENSE_1_0.txt)
  12. */
  13. #ifndef BOOST_NUMERIC_ODEINT_ALGEBRA_NORM_RESULT_TYPE_HPP_INCLUDED
  14. #define BOOST_NUMERIC_ODEINT_ALGEBRA_NORM_RESULT_TYPE_HPP_INCLUDED
  15. #include <boost/numeric/odeint/algebra/detail/extract_value_type.hpp>
  16. namespace boost {
  17. namespace numeric {
  18. namespace odeint {
  19. template< typename S , typename Enabler = void >
  20. struct norm_result_type {
  21. typedef typename detail::extract_value_type< S >::type type;
  22. };
  23. } } }
  24. #endif