summaryrefslogtreecommitdiff
path: root/wasserstein/include/hera_infinity.h
diff options
context:
space:
mode:
authorArnur Nigmetov <nigmetov@tugraz.at>2019-12-03 20:34:28 +0100
committerArnur Nigmetov <nigmetov@tugraz.at>2020-02-18 15:02:39 +0100
commit6ff8072e8c5a6dc1301e884f5a648a0b63bdd48a (patch)
tree8a48082c8765df4055247e91fc3e2d3d76876758 /wasserstein/include/hera_infinity.h
parent9a89971855acefe39dce0e2adadf53b88ca8f683 (diff)
Rename directories for bottleneck and Wasserstein
Diffstat (limited to 'wasserstein/include/hera_infinity.h')
-rw-r--r--wasserstein/include/hera_infinity.h22
1 files changed, 22 insertions, 0 deletions
diff --git a/wasserstein/include/hera_infinity.h b/wasserstein/include/hera_infinity.h
new file mode 100644
index 0000000..8d86dbb
--- /dev/null
+++ b/wasserstein/include/hera_infinity.h
@@ -0,0 +1,22 @@
+#ifndef WASSERSTEIN_HERA_INFINITY_H
+#define WASSERSTEIN_HERA_INFINITY_H
+
+// we cannot assume that template parameter Real will always provide infinity() value,
+// so value -1.0 is used to encode infinity (l_inf norm is used by default)
+
+namespace hera {
+
+ template<class Real = double>
+ inline bool is_infinity(const Real& x)
+ {
+ return x == Real(-1);
+ };
+
+ template<class Real = double>
+ inline constexpr Real get_infinity()
+ {
+ return Real(-1);
+ }
+}
+
+#endif //WASSERSTEIN_HERA_INFINITY_H