LCOV - code coverage report | |||||||||||||||||||||||||
|
|||||||||||||||||||||||||
Line data Source code 1 : #include "FBStopping.h" 2 : 3 7 : FBStopping::FBStopping(double tol) { 4 7 : m_tol = tol; 5 7 : } 6 : 7 0 : int FBStopping::stop(FBCache & c) { 8 0 : if (c.get_norm_fpr() <= m_tol) return 1; 9 0 : else return 0; 10 : } 11 : 12 7 : FBStopping::~FBStopping() { 13 : 14 16 : } |
Generated by: LCOV version 1.10 |