summaryrefslogtreecommitdiffhomepage
path: root/dev/lib/logic/math.hpp
diff options
context:
space:
mode:
authorAmlal El Mahrouss <amlal@nekernel.org>2025-11-23 20:16:02 -0500
committerGitHub <noreply@github.com>2025-11-23 20:16:02 -0500
commit85f89ee4bb137100cbeffcbc10168eb8ea52e6cc (patch)
treef6e2063319ceaaa02f523fb5c289e4f37411a2df /dev/lib/logic/math.hpp
parent9a70f32ddaec0eef99efbf7ff5597c2adf08f45a (diff)
parent65a8349aa5526d071b18cd4d42586c46faaa3823 (diff)
Merge pull request #18 from amlel-el-mahrouss/developv1.0.48
OCL v1.0.48
Diffstat (limited to 'dev/lib/logic/math.hpp')
-rw-r--r--dev/lib/logic/math.hpp33
1 files changed, 0 insertions, 33 deletions
diff --git a/dev/lib/logic/math.hpp b/dev/lib/logic/math.hpp
deleted file mode 100644
index 52f4535..0000000
--- a/dev/lib/logic/math.hpp
+++ /dev/null
@@ -1,33 +0,0 @@
-/*
- * File: math.hpp
- * Purpose: Mathematics c++ header.
- * Author: Amlal El Mahrouss (amlal@nekernel.org)
- * Copyright 2025, Amlal El Mahrouss, Licensed under the Boost Software License.
- */
-
-#pragma once
-
-namespace ocl
-{
- template <__SIZE_TYPE__ T>
- struct is_non_boolean_integer final
- {
- static constexpr const bool value = true;
- };
-
- template <>
- struct is_non_boolean_integer<false> final
- {
- static constexpr const bool value = false;
- };
-
- template <>
- struct is_non_boolean_integer<true> final
- {
- static constexpr const bool value = false;
- };
-
- constexpr inline auto not_a_number = __builtin_nanf ("");
- constexpr inline auto positive_infinity = __builtin_inff ();
- constexpr inline auto negative_infinity = -positive_infinity;
-} // namespace ocl \ No newline at end of file