zmc
2023-12-14 357c5a3c4659f1fe9e46e8c20827ab757c5d3929
src/main/java/com/flightfeather/monitor/analysis/dust/exception/ExceptionValueMutation.kt
@@ -30,8 +30,8 @@
    }
    override fun judgeDuration(sIndex: Int, eIndex: Int): Boolean {
        val b1 = special && (eIndex - sIndex) >= (config.mutationNum / 2)
        val b2 = (eIndex - sIndex) >= config.mutationNum
        val b1 = special && (eIndex - 1 - sIndex) >= (config.mutationNum / 2)
        val b2 = (eIndex - 1  - sIndex) >= config.mutationNum
        special = false
        return b1 || b2
    }