mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
32c3ba02d4
fix hyperbolic and exponental functions: for special values
18 lines
591 B
C++
18 lines
591 B
C++
#ifndef SPROUT_MATH_CMATH_HPP
|
|
#define SPROUT_MATH_CMATH_HPP
|
|
|
|
#include <sprout/config.hpp>
|
|
#include <sprout/math/classifications.hpp>
|
|
#include <sprout/math/trigonometric.hpp>
|
|
#include <sprout/math/hyperbolic.hpp>
|
|
#include <sprout/math/exponential.hpp>
|
|
#include <sprout/math/power.hpp>
|
|
#include <sprout/math/error.hpp>
|
|
#include <sprout/math/gamma.hpp>
|
|
#include <sprout/math/nearest.hpp>
|
|
#include <sprout/math/remainders.hpp>
|
|
#include <sprout/math/manipulations.hpp>
|
|
#include <sprout/math/minmax.hpp>
|
|
#include <sprout/math/muladd.hpp>
|
|
|
|
#endif // #ifndef SPROUT_MATH_CMATH_HPP
|