aboutsummaryrefslogtreecommitdiff
path: root/chaos/src/chaos.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'chaos/src/chaos.hpp')
-rw-r--r--chaos/src/chaos.hpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/chaos/src/chaos.hpp b/chaos/src/chaos.hpp
index 971d503..259f56e 100644
--- a/chaos/src/chaos.hpp
+++ b/chaos/src/chaos.hpp
@@ -38,27 +38,14 @@
/* internal we can work with a higher precision than pd */
#ifdef DOUBLE_PRECISION
typedef double data_t;
-#define CHAOS_ABS(x) fabs(x)
#else
typedef float data_t;
-#define CHAOS_ABS(x) fabsf(x)
#endif
-inline data_t chaos_mod(data_t x, data_t y)
-{
-#ifdef DOUBLE_PRECISION
- return fmod(x,y);
-#else
- return fmodf(x,y);
-#endif
-}
-
inline data_t rand_range(data_t low, data_t high)
{
return low + ( (rand() * (high - low)) / RAND_MAX);
}
-
-
#define __chaos_hpp
#endif /* __chaos_hpp */