00001 #ifndef __LINEARACTIVATION_H 00002 #define __LINEARACTIVATION_H 00003 00004 #include "IActivation.hpp" 00005 00009 class LinearActivation : public IActivation 00010 { 00011 public: 00012 virtual double ActivationFucntion(double x) { return x; } 00013 }; 00014 00015 00016 #endif