]> git.proxmox.com Git - ceph.git/blame - ceph/src/boost/libs/numeric/odeint/include/boost/numeric/odeint/algebra/norm_result_type.hpp
bump version to 12.2.2-pve1
[ceph.git] / ceph / src / boost / libs / numeric / odeint / include / boost / numeric / odeint / algebra / norm_result_type.hpp
CommitLineData
7c673cae
FG
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
22namespace boost {
23namespace numeric {
24namespace odeint {
25
26template< typename S , typename Enabler = void >
27struct norm_result_type {
28 typedef typename detail::extract_value_type< S >::type type;
29};
30
31} } }
32
33#endif