summary refs log tree commit diff
path: root/src/Math/Sigmoid.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/Math/Sigmoid.hpp')
-rw-r--r--src/Math/Sigmoid.hpp13
1 files changed, 0 insertions, 13 deletions
diff --git a/src/Math/Sigmoid.hpp b/src/Math/Sigmoid.hpp
deleted file mode 100644
index f2fa009..0000000
--- a/src/Math/Sigmoid.hpp
+++ /dev/null
@@ -1,13 +0,0 @@
-#pragma once
-
-#include <cmath>
-#include "Constants.hpp"
-
-namespace Math {
-
-template <typename T>
-T sigmoid(T x) {
-    return 1 / (1 + std::pow(E, -x));
-}
-
-}