#include "neural/slopestd.h" template class Neural::SlopeStd; template class Neural::SlopeStd; template class Neural::SlopeStd; template<> float Neural::tpltanh( float sInput ) { return tanhf( sInput ); } template<> double Neural::tpltanh( double sInput ) { return tanh( sInput ); } template<> long double Neural::tpltanh( long double sInput ) { return tanhl( sInput ); }