Would appreciate help here.
Early in Chapter 3, The High Low System, There is a section titled "How to Truncate". It says "Truncation means keeping the integer and dropping everything after the decimal point."
That is very clear.
However in the example given for a negative index calculation, it says :
"If a count per deck of -1 is required to stand, and you have a count per deck of -1.2, then hit."
Isn't that an example of Flooring not Truncating ?
-1.9. -1.8, -1.7, -1.6, -1.5, -1.4, -1.3, -1.1 would all be truncated to the index -1. Wouldn't they ?
And they could be Floored to -2. (Rounded toward negative infinity).
So am not sure how to use the negative indexes in the book. Does it round -1.2 to -2 as in the example provided. Or does it truncate ("keeping the integer and dropping everything after the decimal point") as explained in the text ?