diff options
author | Chris Dyer <redpony@gmail.com> | 2014-03-18 01:41:17 -0400 |
---|---|---|
committer | Chris Dyer <redpony@gmail.com> | 2014-03-18 01:41:17 -0400 |
commit | 8e60188039211c9a585625dd8309f2ba57b0cbb2 (patch) | |
tree | 0ad14a94164d30f8b477958c06b14b9b7cccbbe3 /utils/star.h | |
parent | 6c04595f968f7a9c047c5941113752a7c7280b45 (diff) |
star function
Diffstat (limited to 'utils/star.h')
-rw-r--r-- | utils/star.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/utils/star.h b/utils/star.h new file mode 100644 index 00000000..3295112c --- /dev/null +++ b/utils/star.h @@ -0,0 +1,12 @@ +#ifndef _STAR_H_ +#define _STAR_H_ + +template <typename T> +T star(const T& x) { + if (!x) return T(); + if (x > T(1)) return std::numeric_limits<T>::infinity(); + if (x < -T(1)) return -std::numeric_limits<T>::infinity(); + return T(1) / (T(1) - x); +} + +#endif |