| 108 | float GST::getActualNegative() { return AN; }; |
| 109 | float GST::getTestedPositive() { return TP + FP; }; |
| 110 | float GST::getTestedNegative() { return TN + FN; }; |
| 111 | |
| 112 | float GST::sensitivity() { return TPR(); }; |
| 113 | float GST::specificity() { return TNR(); }; |