mxlib
c++ tools for analyzing astronomical data and other tasks by Jared R. Males. [git repo]
Loading...
Searching...
No Matches
factorial.hpp
Go to the documentation of this file.
1/** \file factorial.hpp
2 * \brief Declares and defines the factorial function.
3 * \ingroup gen_math_files
4 * \author Jared R. Males (jaredmales@gmail.com)
5 *
6 */
7
8//***********************************************************************//
9// Copyright 2020 Jared R. Males (jaredmales@gmail.com)
10//
11// This file is part of mxlib.
12//
13// mxlib is free software: you can redistribute it and/or modify
14// it under the terms of the GNU General Public License as published by
15// the Free Software Foundation, either version 3 of the License, or
16// (at your option) any later version.
17//
18// mxlib is distributed in the hope that it will be useful,
19// but WITHOUT ANY WARRANTY; without even the implied warranty of
20// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21// GNU General Public License for more details.
22//
23// You should have received a copy of the GNU General Public License
24// along with mxlib. If not, see <http://www.gnu.org/licenses/>.
25//***********************************************************************//
26
27#ifndef mx_factorial_hpp
28#define mx_factorial_hpp
29
30#include <type_traits>
31
32#ifdef MX_INCLUDE_BOOST
33#include <boost/math/special_functions/factorials.hpp>
34#endif
35
36namespace mx
37{
38namespace math
39{
40namespace func
41{
42
43/// The factorial function.
44/**
45 * \ingroup functions
46 */
47template <typename T>
48T factorial( T x /**< [in] the argument */ )
49{
50#ifdef MX_INCLUDE_BOOST
51 return boost::math::factorial<T>( x );
52#else
53 static_assert(
54 std::is_fundamental<T>::value || !std::is_fundamental<T>::value,
55 "factorial<T> not specialized for type T, and MX_INCLUDE_BOOST is not defined, so I can't just use boost." );
56 return 0;
57#endif
58}
59
60template <>
61float factorial<float>( float x );
62
63template <>
64double factorial<double>( double x );
65
66template <>
67long double factorial<long double>( long double x );
68
69#ifdef HASQUAD
70template <>
71__float128 factorial<__float128>( __float128 x );
72#endif
73
74} // namespace func
75} // namespace math
76} // namespace mx
77
78#endif // mx_factorial_hpp
T factorial(T x)
The factorial function.
Definition factorial.hpp:48
constexpr floatT six_fifths()
Return 6/5 in the specified precision.
The mxlib c++ namespace.
Definition mxError.hpp:106