WPILibC++ 2024.3.2
gcem.hpp
Go to the documentation of this file.
1/*################################################################################
2 ##
3 ## Copyright (C) 2016-2023 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
27
28#include "gcem_incl/is_inf.hpp"
29#include "gcem_incl/is_nan.hpp"
31
32#include "gcem_incl/signbit.hpp"
35#include "gcem_incl/sgn.hpp"
36
37#include "gcem_incl/abs.hpp"
38#include "gcem_incl/ceil.hpp"
39#include "gcem_incl/floor.hpp"
40#include "gcem_incl/trunc.hpp"
41#include "gcem_incl/is_odd.hpp"
42#include "gcem_incl/is_even.hpp"
43#include "gcem_incl/max.hpp"
44#include "gcem_incl/min.hpp"
45#include "gcem_incl/sqrt.hpp"
47#include "gcem_incl/hypot.hpp"
48
53#include "gcem_incl/round.hpp"
54#include "gcem_incl/fmod.hpp"
55
57#include "gcem_incl/exp.hpp"
58#include "gcem_incl/expm1.hpp"
59#include "gcem_incl/log.hpp"
60#include "gcem_incl/log1p.hpp"
61#include "gcem_incl/log2.hpp"
62#include "gcem_incl/log10.hpp"
63#include "gcem_incl/pow.hpp"
64
65#include "gcem_incl/gcd.hpp"
66#include "gcem_incl/lcm.hpp"
67
68#include "gcem_incl/tan.hpp"
69#include "gcem_incl/cos.hpp"
70#include "gcem_incl/sin.hpp"
71
72#include "gcem_incl/atan.hpp"
73#include "gcem_incl/atan2.hpp"
74#include "gcem_incl/acos.hpp"
75#include "gcem_incl/asin.hpp"
76
77#include "gcem_incl/tanh.hpp"
78#include "gcem_incl/cosh.hpp"
79#include "gcem_incl/sinh.hpp"
80
81#include "gcem_incl/atanh.hpp"
82#include "gcem_incl/acosh.hpp"
83#include "gcem_incl/asinh.hpp"
84
86#include "gcem_incl/lgamma.hpp"
87#include "gcem_incl/tgamma.hpp"
89#include "gcem_incl/lbeta.hpp"
90#include "gcem_incl/beta.hpp"
91#include "gcem_incl/lmgamma.hpp"
93
94#include "gcem_incl/erf.hpp"
95#include "gcem_incl/erf_inv.hpp"
100
101#endif