NNetCpp
Neural network implementation in C++
 All Classes Namespaces Functions Variables
StopCondition.h
1 #ifndef STOP_CONDITION_H
2 #define STOP_CONDITION_H
3 
4 #include <vector>
5 
11  public:
20  virtual bool check(int iteration, double error) = 0;
21 };
22 
23 #endif // STOP_CONDITION_H
virtual bool check(int iteration, double error)=0
Definition: StopCondition.h:10