diff options
Diffstat (limited to '')
-rw-r--r-- | src/slopestd.cpp | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/src/slopestd.cpp b/src/slopestd.cpp index 16b2be4..a88d8e9 100644 --- a/src/slopestd.cpp +++ b/src/slopestd.cpp | |||
@@ -3,3 +3,21 @@ | |||
3 | template class Neural::SlopeStd<float>; | 3 | template class Neural::SlopeStd<float>; |
4 | template class Neural::SlopeStd<double>; | 4 | template class Neural::SlopeStd<double>; |
5 | template class Neural::SlopeStd<long double>; | 5 | template class Neural::SlopeStd<long double>; |
6 | |||
7 | template<> | ||
8 | float Neural::tpltanh<float>( float sInput ) | ||
9 | { | ||
10 | return tanhf( sInput ); | ||
11 | } | ||
12 | |||
13 | template<> | ||
14 | double Neural::tpltanh<double>( double sInput ) | ||
15 | { | ||
16 | return tanh( sInput ); | ||
17 | } | ||
18 | |||
19 | template<> | ||
20 | long double Neural::tpltanh<long double>( long double sInput ) | ||
21 | { | ||
22 | return tanhl( sInput ); | ||
23 | } | ||