decrease the lower bound for PDR

This commit is contained in:
Pritimay Sarkar
2023-10-02 12:51:15 +05:30
parent 8482de6aeb
commit f1f45fb958

View File

@@ -471,9 +471,9 @@ class HemoCubeFragment : Fragment() {
private fun findResult(calculatedRatio: Double?): String { private fun findResult(calculatedRatio: Double?): String {
try { try {
if (calculatedRatio != null) { if (calculatedRatio != null) {
if (calculatedRatio < 0.085) if (calculatedRatio < 0.05)
return "Inconclusive. Very low Absorbance - Repeat test with Higher Blood Volume" return "Inconclusive. Very low Absorbance - Repeat test with Higher Blood Volume"
if (calculatedRatio in 0.085..0.155) if (calculatedRatio in 0.05..0.155)
return "Normal" return "Normal"
if (calculatedRatio in 0.155..0.175) if (calculatedRatio in 0.155..0.175)
return "Negative Borderline. Repeat Test" return "Negative Borderline. Repeat Test"