1 //=================================================================================================
2 /*!
3 //  \file blaze/math/Shims.h
4 //  \brief Header file for the mathematical shims
5 //
6 //  Copyright (C) 2012-2020 Klaus Iglberger - All Rights Reserved
7 //
8 //  This file is part of the Blaze library. You can redistribute it and/or modify it under
9 //  the terms of the New (Revised) BSD License. Redistribution and use in source and binary
10 //  forms, with or without modification, are permitted provided that the following conditions
11 //  are met:
12 //
13 //  1. Redistributions of source code must retain the above copyright notice, this list of
14 //     conditions and the following disclaimer.
15 //  2. Redistributions in binary form must reproduce the above copyright notice, this list
16 //     of conditions and the following disclaimer in the documentation and/or other materials
17 //     provided with the distribution.
18 //  3. Neither the names of the Blaze development group nor the names of its contributors
19 //     may be used to endorse or promote products derived from this software without specific
20 //     prior written permission.
21 //
22 //  THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND ANY
23 //  EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
24 //  OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT
25 //  SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
26 //  INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
27 //  TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR
28 //  BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29 //  CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
30 //  ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH
31 //  DAMAGE.
32 */
33 //=================================================================================================
34 
35 #ifndef _BLAZE_MATH_SHIMS_H_
36 #define _BLAZE_MATH_SHIMS_H_
37 
38 
39 //*************************************************************************************************
40 // Includes
41 //*************************************************************************************************
42 
43 #include <blaze/math/shims/Abs.h>
44 #include <blaze/math/shims/Acos.h>
45 #include <blaze/math/shims/Acosh.h>
46 #include <blaze/math/shims/Arg.h>
47 #include <blaze/math/shims/Asin.h>
48 #include <blaze/math/shims/Asinh.h>
49 #include <blaze/math/shims/Atan.h>
50 #include <blaze/math/shims/Atan2.h>
51 #include <blaze/math/shims/Atanh.h>
52 #include <blaze/math/shims/Cbrt.h>
53 #include <blaze/math/shims/Ceil.h>
54 #include <blaze/math/shims/Clamp.h>
55 #include <blaze/math/shims/Clear.h>
56 #include <blaze/math/shims/Conjugate.h>
57 #include <blaze/math/shims/Cos.h>
58 #include <blaze/math/shims/Cosh.h>
59 #include <blaze/math/shims/Digits.h>
60 #include <blaze/math/shims/Equal.h>
61 #include <blaze/math/shims/Erf.h>
62 #include <blaze/math/shims/Erfc.h>
63 #include <blaze/math/shims/Eval.h>
64 #include <blaze/math/shims/Evaluate.h>
65 #include <blaze/math/shims/Exp.h>
66 #include <blaze/math/shims/Exp2.h>
67 #include <blaze/math/shims/Exp10.h>
68 #include <blaze/math/shims/Floor.h>
69 #include <blaze/math/shims/Frexp.h>
70 #include <blaze/math/shims/Greater.h>
71 #include <blaze/math/shims/Hypot.h>
72 #include <blaze/math/shims/Imaginary.h>
73 #include <blaze/math/shims/InvCbrt.h>
74 #include <blaze/math/shims/Invert.h>
75 #include <blaze/math/shims/InvSqrt.h>
76 #include <blaze/math/shims/IsDefault.h>
77 #include <blaze/math/shims/IsDivisor.h>
78 #include <blaze/math/shims/IsFinite.h>
79 #include <blaze/math/shims/IsInf.h>
80 #include <blaze/math/shims/IsNaN.h>
81 #include <blaze/math/shims/IsOne.h>
82 #include <blaze/math/shims/IsReal.h>
83 #include <blaze/math/shims/IsZero.h>
84 #include <blaze/math/shims/Less.h>
85 #include <blaze/math/shims/LGamma.h>
86 #include <blaze/math/shims/Log.h>
87 #include <blaze/math/shims/Log1p.h>
88 #include <blaze/math/shims/Log2.h>
89 #include <blaze/math/shims/Log10.h>
90 #include <blaze/math/shims/NextMultiple.h>
91 #include <blaze/math/shims/Pow.h>
92 #include <blaze/math/shims/Pow2.h>
93 #include <blaze/math/shims/Pow3.h>
94 #include <blaze/math/shims/Pow4.h>
95 #include <blaze/math/shims/PrevMultiple.h>
96 #include <blaze/math/shims/Qdrt.h>
97 #include <blaze/math/shims/Real.h>
98 #include <blaze/math/shims/Reset.h>
99 #include <blaze/math/shims/Round.h>
100 #include <blaze/math/shims/Serial.h>
101 #include <blaze/math/shims/Sign.h>
102 #include <blaze/math/shims/Sin.h>
103 #include <blaze/math/shims/Sinh.h>
104 #include <blaze/math/shims/Sqrt.h>
105 #include <blaze/math/shims/Tan.h>
106 #include <blaze/math/shims/Tanh.h>
107 #include <blaze/math/shims/Trunc.h>
108 
109 #endif
110