| #define TTS_ALL_IEEE_EQUAL | ( | L, | |
| R, | |||
| ... | |||
| ) | TTS_ALL_ULP_EQUAL(L,R,0, __VA_ARGS__) |
Checks if all elements of two sequences are within 0 ULP and that their sizes are equal.
This also allow for infinites and NaNs to be compared equal if both values are the same infinites or are both $NaN$. This comparison is performed by using the proper tts::ulp_distance overload.
| L,R | Sequences to compare. |
| ... | Optional tag. If equals to REQUIRED, this test will stop the program if it fails. |