mirror of
https://github.com/bolero-MURAKAMI/Sprout.git
synced 2024-11-14 10:39:05 +00:00
fix math headers
This commit is contained in:
parent
887dba1849
commit
5d809ef5c9
9 changed files with 36 additions and 20 deletions
|
@ -6,9 +6,10 @@
|
|||
#include <sprout/math/trigonometric.hpp>
|
||||
#include <sprout/math/hyperbolic.hpp>
|
||||
#include <sprout/math/exponential.hpp>
|
||||
#include <sprout/math/floating_point.hpp>
|
||||
#include <sprout/math/power.hpp>
|
||||
#include <sprout/math/operations.hpp>
|
||||
#include <sprout/math/nearest.hpp>
|
||||
#include <sprout/math/remainders.hpp>
|
||||
#include <sprout/math/minmax.hpp>
|
||||
#include <sprout/math/muladd.hpp>
|
||||
|
||||
#endif // #ifndef SPROUT_CMATH_HPP
|
||||
|
|
|
@ -10,5 +10,7 @@
|
|||
#include <sprout/math/log10.hpp>
|
||||
#include <sprout/math/log2.hpp>
|
||||
#include <sprout/math/log1p.hpp>
|
||||
#include <sprout/math/log1p.hpp>
|
||||
#include <sprout/math/floating_point.hpp>
|
||||
|
||||
#endif // #ifndef SPROUT_MATH_EXPONENTIAL_HPP
|
||||
|
|
|
@ -6,10 +6,11 @@
|
|||
#include <sprout/math/trigonometric.hpp>
|
||||
#include <sprout/math/hyperbolic.hpp>
|
||||
#include <sprout/math/exponential.hpp>
|
||||
#include <sprout/math/floating_point.hpp>
|
||||
#include <sprout/math/power.hpp>
|
||||
#include <sprout/math/operations.hpp>
|
||||
#include <sprout/math/nearest.hpp>
|
||||
#include <sprout/math/remainders.hpp>
|
||||
#include <sprout/math/minmax.hpp>
|
||||
#include <sprout/math/muladd.hpp>
|
||||
#include <sprout/math/common_factor.hpp>
|
||||
#include <sprout/math/factorial.hpp>
|
||||
#include <sprout/math/bernoulli.hpp>
|
||||
|
|
9
sprout/math/minmax.hpp
Normal file
9
sprout/math/minmax.hpp
Normal file
|
@ -0,0 +1,9 @@
|
|||
#ifndef SPROUT_MATH_MINMAX_HPP
|
||||
#define SPROUT_MATH_MINMAX_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/math/fmax.hpp>
|
||||
#include <sprout/math/fmin.hpp>
|
||||
#include <sprout/math/fdim.hpp>
|
||||
|
||||
#endif // #ifndef SPROUT_MATH_MINMAX_HPP
|
7
sprout/math/muladd.hpp
Normal file
7
sprout/math/muladd.hpp
Normal file
|
@ -0,0 +1,7 @@
|
|||
#ifndef SPROUT_MATH_MULADD_HPP
|
||||
#define SPROUT_MATH_MULADD_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/math/fma.hpp>
|
||||
|
||||
#endif // #ifndef SPROUT_MATH_MULADD_HPP
|
|
@ -1,16 +0,0 @@
|
|||
#ifndef SPROUT_MATH_OPERATIONS_HPP
|
||||
#define SPROUT_MATH_OPERATIONS_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/math/abs.hpp>
|
||||
#include <sprout/math/fabs.hpp>
|
||||
#include <sprout/math/fma.hpp>
|
||||
#include <sprout/math/fmax.hpp>
|
||||
#include <sprout/math/fmin.hpp>
|
||||
#include <sprout/math/fdim.hpp>
|
||||
#include <sprout/math/fmod.hpp>
|
||||
#include <sprout/math/reminder.hpp>
|
||||
#include <sprout/math/quotient.hpp>
|
||||
#include <sprout/math/rem_quo.hpp>
|
||||
|
||||
#endif // #ifndef SPROUT_MATH_OPERATIONS_HPP
|
|
@ -7,5 +7,7 @@
|
|||
#include <sprout/math/pow.hpp>
|
||||
#include <sprout/math/log_a.hpp>
|
||||
#include <sprout/math/hypot.hpp>
|
||||
#include <sprout/math/abs.hpp>
|
||||
#include <sprout/math/fabs.hpp>
|
||||
|
||||
#endif // #ifndef SPROUT_MATH_POWER_HPP
|
||||
|
|
10
sprout/math/remainders.hpp
Normal file
10
sprout/math/remainders.hpp
Normal file
|
@ -0,0 +1,10 @@
|
|||
#ifndef SPROUT_MATH_REMAINDERS_HPP
|
||||
#define SPROUT_MATH_REMAINDERS_HPP
|
||||
|
||||
#include <sprout/config.hpp>
|
||||
#include <sprout/math/fmod.hpp>
|
||||
#include <sprout/math/remainder.hpp>
|
||||
#include <sprout/math/quotient.hpp>
|
||||
#include <sprout/math/rem_quo.hpp>
|
||||
|
||||
#endif // #ifndef SPROUT_MATH_REMAINDERS_HPP
|
Loading…
Reference in a new issue