Well, the inc/dec thing isn't a huge deal. Nice to have, whenever it floats to the top of the list.
As a separate idea, though, you might think about upgrading the float implementation of delta. Any change in exponent, or a significant change in mantissa*, or a sign change with a mantissa above a certain threshold. Could that be done entirely in DM firmware without changing DMD? I guess the issue is that the compare still has to know it's looking at a float to invoke those rules.
*This implicitly makes the threshold relative to the magnitude so a larger number has to change more to kick the delta, plus still allowing an integer comparison rather than having to convert to a float and apply a comparison rule.