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