TarzaNN
TarzaNN neural network simulator
|
00001 #ifndef ODEMONITOR_H_ 00002 #define ODEMONITOR_H_ 00003 00004 #include "Monitor.h" 00005 #include <vector> 00006 using namespace std; 00007 00009 class ODEMonitor : public Monitor { 00010 public: 00011 ODEMonitor(Network* n); 00012 virtual ~ODEMonitor(); 00013 00014 void doneStep(); 00015 bool update(); 00016 }; 00017 #endif /*MONITOR_H_*/