annotate DEPENDENCIES/generic/include/boost/math_fwd.hpp @ 125:34e428693f5d vext

Vext -> Repoint
author Chris Cannam
date Thu, 14 Jun 2018 11:15:39 +0100
parents 2665513ce2d3
children
rev   line source
Chris@16 1 // Boost math_fwd.hpp header file ------------------------------------------//
Chris@16 2
Chris@16 3 // (C) Copyright Hubert Holin and Daryle Walker 2001-2002. Distributed under the Boost
Chris@16 4 // Software License, Version 1.0. (See accompanying file
Chris@16 5 // LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
Chris@16 6
Chris@16 7 // See http://www.boost.org/libs/math for documentation.
Chris@16 8
Chris@16 9 #ifndef BOOST_MATH_FWD_HPP
Chris@16 10 #define BOOST_MATH_FWD_HPP
Chris@16 11
Chris@16 12 #include <boost/cstdint.hpp>
Chris@16 13
Chris@16 14 namespace boost
Chris@16 15 {
Chris@16 16 namespace math
Chris@16 17 {
Chris@16 18
Chris@16 19
Chris@16 20 // From <boost/math/quaternion.hpp> ----------------------------------------//
Chris@16 21
Chris@16 22 template < typename T >
Chris@16 23 class quaternion;
Chris@16 24
Chris@16 25 template < >
Chris@16 26 class quaternion< float >;
Chris@16 27 template < >
Chris@16 28 class quaternion< double >;
Chris@16 29 template < >
Chris@16 30 class quaternion< long double >;
Chris@16 31
Chris@16 32 // Also has many function templates (including operators)
Chris@16 33
Chris@16 34
Chris@16 35 // From <boost/math/octonion.hpp> ------------------------------------------//
Chris@16 36
Chris@16 37 template < typename T >
Chris@16 38 class octonion;
Chris@16 39
Chris@16 40 template < >
Chris@16 41 class octonion< float >;
Chris@16 42 template < >
Chris@16 43 class octonion< double >;
Chris@16 44 template < >
Chris@16 45 class octonion< long double >;
Chris@16 46
Chris@16 47 // Also has many function templates (including operators)
Chris@16 48
Chris@16 49
Chris@16 50 // From <boost/math/special_functions/acosh.hpp> ---------------------------//
Chris@16 51
Chris@16 52 // Only has function template
Chris@16 53
Chris@16 54
Chris@16 55 // From <boost/math/special_functions/asinh.hpp> ---------------------------//
Chris@16 56
Chris@16 57 // Only has function template
Chris@16 58
Chris@16 59
Chris@16 60 // From <boost/math/special_functions/atanh.hpp> ---------------------------//
Chris@16 61
Chris@16 62 // Only has function template
Chris@16 63
Chris@16 64
Chris@16 65 // From <boost/math/special_functions/sinc.hpp> ----------------------------//
Chris@16 66
Chris@16 67 // Only has function templates
Chris@16 68
Chris@16 69
Chris@16 70 // From <boost/math/special_functions/sinhc.hpp> ---------------------------//
Chris@16 71
Chris@16 72 // Only has function templates
Chris@16 73
Chris@16 74
Chris@16 75 // From <boost/math/common_factor.hpp> -------------------------------------//
Chris@16 76
Chris@16 77 // Only #includes other headers
Chris@16 78
Chris@16 79
Chris@16 80 // From <boost/math/common_factor_ct.hpp> ----------------------------------//
Chris@16 81
Chris@16 82 #ifdef BOOST_NO_INTEGRAL_INT64_T
Chris@16 83 typedef unsigned long static_gcd_type;
Chris@16 84 #else
Chris@16 85 typedef boost::uintmax_t static_gcd_type;
Chris@16 86 #endif
Chris@16 87
Chris@16 88 template < static_gcd_type Value1, static_gcd_type Value2 >
Chris@16 89 struct static_gcd;
Chris@16 90 template < static_gcd_type Value1, static_gcd_type Value2 >
Chris@16 91 struct static_lcm;
Chris@16 92
Chris@16 93
Chris@16 94 // From <boost/math/common_factor_rt.hpp> ----------------------------------//
Chris@16 95
Chris@16 96 template < typename IntegerType >
Chris@16 97 class gcd_evaluator;
Chris@16 98 template < typename IntegerType >
Chris@16 99 class lcm_evaluator;
Chris@16 100
Chris@16 101 // Also has a couple of function templates
Chris@16 102
Chris@16 103
Chris@16 104 } // namespace math
Chris@16 105 } // namespace boost
Chris@16 106
Chris@16 107
Chris@16 108 #endif // BOOST_MATH_FWD_HPP