Two scores are considered similar if the absolute "error" of them is smaller than defaulMaxAbsoluteDiff.
The relative error is defined as:
absError(a, b) = abs(a - b)
**Implementation note:** all computations are done in integer arithmetic hence all scores are lower than or equal to AlignmentChain.maxScore .
See Source File
Two scores are considered similar if the absolute "error" of them is smaller than defaulMaxAbsoluteDiff.
The relative error is defined as:
absError(a, b) = abs(a - b)
**Implementation note:** all computations are done in integer arithmetic hence all scores are lower than or equal to AlignmentChain.maxScore .