WPILibC++ 2023.4.3-108-ge5452e3
gcem.hpp
Go to the documentation of this file.
1/*################################################################################
2 ##
3 ## Copyright (C) 2016-2022 Keith O'Hara
4 ##
5 ## This file is part of the GCE-Math C++ library.
6 ##
7 ## Licensed under the Apache License, Version 2.0 (the "License");
8 ## you may not use this file except in compliance with the License.
9 ## You may obtain a copy of the License at
10 ##
11 ## http://www.apache.org/licenses/LICENSE-2.0
12 ##
13 ## Unless required by applicable law or agreed to in writing, software
14 ## distributed under the License is distributed on an "AS IS" BASIS,
15 ## WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 ## See the License for the specific language governing permissions and
17 ## limitations under the License.
18 ##
19 ################################################################################*/
20
21#ifndef _gcem_HPP
22#define _gcem_HPP
23
25
26namespace gcem
27{
29
30 #include "gcem_incl/is_inf.hpp"
31 #include "gcem_incl/is_nan.hpp"
33
34 #include "gcem_incl/signbit.hpp"
35 #include "gcem_incl/copysign.hpp"
36 #include "gcem_incl/neg_zero.hpp"
37 #include "gcem_incl/sgn.hpp"
38
39 #include "gcem_incl/abs.hpp"
40 #include "gcem_incl/ceil.hpp"
41 #include "gcem_incl/floor.hpp"
42 #include "gcem_incl/trunc.hpp"
43 #include "gcem_incl/is_odd.hpp"
44 #include "gcem_incl/is_even.hpp"
45 #include "gcem_incl/max.hpp"
46 #include "gcem_incl/min.hpp"
47 #include "gcem_incl/sqrt.hpp"
48 #include "gcem_incl/inv_sqrt.hpp"
49 #include "gcem_incl/hypot.hpp"
50
54 #include "gcem_incl/mantissa.hpp"
55 #include "gcem_incl/round.hpp"
56 #include "gcem_incl/fmod.hpp"
57
59 #include "gcem_incl/exp.hpp"
60 #include "gcem_incl/expm1.hpp"
61 #include "gcem_incl/log.hpp"
62 #include "gcem_incl/log1p.hpp"
63 #include "gcem_incl/log2.hpp"
64 #include "gcem_incl/log10.hpp"
65 #include "gcem_incl/pow.hpp"
66
67 #include "gcem_incl/gcd.hpp"
68 #include "gcem_incl/lcm.hpp"
69
70 #include "gcem_incl/tan.hpp"
71 #include "gcem_incl/cos.hpp"
72 #include "gcem_incl/sin.hpp"
73
74 #include "gcem_incl/atan.hpp"
75 #include "gcem_incl/atan2.hpp"
76 #include "gcem_incl/acos.hpp"
77 #include "gcem_incl/asin.hpp"
78
79 #include "gcem_incl/tanh.hpp"
80 #include "gcem_incl/cosh.hpp"
81 #include "gcem_incl/sinh.hpp"
82
83 #include "gcem_incl/atanh.hpp"
84 #include "gcem_incl/acosh.hpp"
85 #include "gcem_incl/asinh.hpp"
86
88 #include "gcem_incl/lgamma.hpp"
89 #include "gcem_incl/tgamma.hpp"
91 #include "gcem_incl/lbeta.hpp"
92 #include "gcem_incl/beta.hpp"
93 #include "gcem_incl/lmgamma.hpp"
95
96 #include "gcem_incl/erf.hpp"
97 #include "gcem_incl/erf_inv.hpp"
102}
103
104#endif
Definition: gcem.hpp:27