00001 00002 #ifndef StandardLearning_H 00003 #define StandardLearning_H 00004 00005 #include "NetParams.h" 00006 #include "LearningAlgorithm.h" 00007 #include "util.h" 00008 00020 class StandardLearning : public LearningAlgorithm { 00021 public: 00023 StandardLearning(const TopolParams& s):LearningAlgorithm(s) {}; 00024 00026 int Learning ( NetParams& net ); 00027 }; 00028 00029 00030 00031 00032 #endif