You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
For some reason negative transactioncounts sometimes show up. As of now there is no evidence that my program produces these numbers during the extraction process. Kevin suggests these negative numbers communicate a very specific kind of error.
The text was updated successfully, but these errors were encountered:
Just a hunch, but are you converting to integers somewhere? Potential overflow into a negative number, although it would be weird that it is exactly -1.
General rules for Java integers is as follows:
If an integer addition overflows, then the result is the low-order bits of the mathematical sum as represented in some sufficiently large two's-complement format. If overflow occurs, then the sign of the result is not the same as the sign of the mathematical sum of the two operand values.
For some reason negative transactioncounts sometimes show up. As of now there is no evidence that my program produces these numbers during the extraction process. Kevin suggests these negative numbers communicate a very specific kind of error.
The text was updated successfully, but these errors were encountered: