| 209 | |
| 210 | template<class VX, class VY> |
| 211 | forceinline RelTest |
| 212 | rtest_gr(VX x, VY y) { |
| 213 | if (x.max() <= y.min()) return RT_FALSE; |
| 214 | if (x.min() > y.max()) return RT_TRUE; |
| 215 | return RT_MAYBE; |
| 216 | } |
| 217 | |
| 218 | template<class VX> |
| 219 | forceinline RelTest |