Lines Matching refs:assertFalse
47 static public void assertFalse(boolean condition) { in assertFalse() method in Main
207 assertFalse(FP16.greater(FP16.MAX_VALUE, FP16.POSITIVE_INFINITY)); in testGreater()
208 assertFalse(FP16.greater(FP16.NEGATIVE_INFINITY, FP16.LOWEST_VALUE)); in testGreater()
210 assertFalse(FP16.greater(FP16.NEGATIVE_ZERO, FP16.POSITIVE_ZERO)); in testGreater()
211 assertFalse(FP16.greater(FP16.POSITIVE_ZERO, FP16.NEGATIVE_ZERO)); in testGreater()
212 assertFalse(FP16.greater(FP16.toHalf(12.3f), FP16.NaN)); in testGreater()
213 assertFalse(FP16.greater(FP16.NaN, FP16.toHalf(12.3f))); in testGreater()
215 assertFalse(FP16.greater(FP16.MIN_VALUE, FP16.MIN_NORMAL)); in testGreater()
217 assertFalse(FP16.greater(FP16.toHalf(12.3f), FP16.toHalf(12.4f))); in testGreater()
218 assertFalse(FP16.greater(FP16.toHalf(-12.4f), FP16.toHalf(-12.3f))); in testGreater()
222 assertFalse(FP16.greater(FP16.toHalf(-1.0f), FP16.toHalf(0.0f))); in testGreater()
224 assertFalse(FP16.greater(FP16.toHalf(-1.0f), FP16.toHalf(-1.0f))); in testGreater()
225 assertFalse(FP16.greater(FP16.toHalf(-1.3f), FP16.toHalf(-1.3f))); in testGreater()
227 assertFalse(FP16.greater(FP16.toHalf(0.0f), FP16.toHalf(1.0f))); in testGreater()
228 assertFalse(FP16.greater(FP16.toHalf(1.0f), FP16.toHalf(1.0f))); in testGreater()
229 assertFalse(FP16.greater(FP16.toHalf(1.3f), FP16.toHalf(1.3f))); in testGreater()
230 assertFalse(FP16.greater(FP16.toHalf(-0.1f), FP16.toHalf(0.0f))); in testGreater()
232 assertFalse(FP16.greater(FP16.toHalf(-0.1f), FP16.toHalf(-0.1f))); in testGreater()
234 assertFalse(FP16.greater(FP16.toHalf(0.0f), FP16.toHalf(0.1f))); in testGreater()
235 assertFalse(FP16.greater(FP16.toHalf(0.1f), FP16.toHalf(0.1f))); in testGreater()
241 assertFalse(FP16.greaterEquals(FP16.MAX_VALUE, FP16.POSITIVE_INFINITY)); in testGreaterEquals()
242 assertFalse(FP16.greaterEquals(FP16.NEGATIVE_INFINITY, FP16.LOWEST_VALUE)); in testGreaterEquals()
246 assertFalse(FP16.greaterEquals(FP16.toHalf(12.3f), FP16.NaN)); in testGreaterEquals()
247 assertFalse(FP16.greaterEquals(FP16.NaN, FP16.toHalf(12.3f))); in testGreaterEquals()
249 assertFalse(FP16.greaterEquals(FP16.MIN_VALUE, FP16.MIN_NORMAL)); in testGreaterEquals()
251 assertFalse(FP16.greaterEquals(FP16.toHalf(12.3f), FP16.toHalf(12.4f))); in testGreaterEquals()
252 assertFalse(FP16.greaterEquals(FP16.toHalf(-12.4f), FP16.toHalf(-12.3f))); in testGreaterEquals()
260 assertFalse(FP16.greaterEquals(FP16.toHalf(-1.0f), FP16.toHalf(0.0f))); in testGreaterEquals()
265 assertFalse(FP16.greaterEquals(FP16.toHalf(0.0f), FP16.toHalf(1.0f))); in testGreaterEquals()
268 assertFalse(FP16.greaterEquals(FP16.toHalf(-0.1f), FP16.toHalf(0.0f))); in testGreaterEquals()
272 assertFalse(FP16.greaterEquals(FP16.toHalf(0.0f), FP16.toHalf(0.1f))); in testGreaterEquals()
279 assertFalse(FP16.less(FP16.POSITIVE_INFINITY, FP16.MAX_VALUE)); in testLess()
280 assertFalse(FP16.less(FP16.LOWEST_VALUE, FP16.NEGATIVE_INFINITY)); in testLess()
282 assertFalse(FP16.less(FP16.POSITIVE_ZERO, FP16.NEGATIVE_ZERO)); in testLess()
283 assertFalse(FP16.less(FP16.NEGATIVE_ZERO, FP16.POSITIVE_ZERO)); in testLess()
284 assertFalse(FP16.less(FP16.NaN, FP16.toHalf(12.3f))); in testLess()
285 assertFalse(FP16.less(FP16.toHalf(12.3f), FP16.NaN)); in testLess()
287 assertFalse(FP16.less(FP16.MIN_NORMAL, FP16.MIN_VALUE)); in testLess()
289 assertFalse(FP16.less(FP16.toHalf(12.4f), FP16.toHalf(12.3f))); in testLess()
290 assertFalse(FP16.less(FP16.toHalf(-12.3f), FP16.toHalf(-12.4f))); in testLess()
295 assertFalse(FP16.less(FP16.toHalf(0.0f), FP16.toHalf(-1.0f))); in testLess()
296 assertFalse(FP16.less(FP16.toHalf(-1.0f), FP16.toHalf(-1.0f))); in testLess()
297 assertFalse(FP16.less(FP16.toHalf(-1.3f), FP16.toHalf(-1.3f))); in testLess()
298 assertFalse(FP16.less(FP16.toHalf(1.0f), FP16.toHalf(0.0f))); in testLess()
300 assertFalse(FP16.less(FP16.toHalf(1.0f), FP16.toHalf(1.0f))); in testLess()
301 assertFalse(FP16.less(FP16.toHalf(1.3f), FP16.toHalf(1.3f))); in testLess()
303 assertFalse(FP16.less(FP16.toHalf(0.0f), FP16.toHalf(-0.1f))); in testLess()
304 assertFalse(FP16.less(FP16.toHalf(-0.1f), FP16.toHalf(-0.1f))); in testLess()
305 assertFalse(FP16.less(FP16.toHalf(0.1f), FP16.toHalf(0.0f))); in testLess()
307 assertFalse(FP16.less(FP16.toHalf(0.1f), FP16.toHalf(0.1f))); in testLess()
313 assertFalse(FP16.lessEquals(FP16.POSITIVE_INFINITY, FP16.MAX_VALUE)); in testLessEquals()
314 assertFalse(FP16.lessEquals(FP16.LOWEST_VALUE, FP16.NEGATIVE_INFINITY)); in testLessEquals()
318 assertFalse(FP16.lessEquals(FP16.NaN, FP16.toHalf(12.3f))); in testLessEquals()
319 assertFalse(FP16.lessEquals(FP16.toHalf(12.3f), FP16.NaN)); in testLessEquals()
321 assertFalse(FP16.lessEquals(FP16.MIN_NORMAL, FP16.MIN_VALUE)); in testLessEquals()
323 assertFalse(FP16.lessEquals(FP16.toHalf(12.4f), FP16.toHalf(12.3f))); in testLessEquals()
324 assertFalse(FP16.lessEquals(FP16.toHalf(-12.3f), FP16.toHalf(-12.4f))); in testLessEquals()
333 assertFalse(FP16.lessEquals(FP16.toHalf(0.0f), FP16.toHalf(-1.0f))); in testLessEquals()
336 assertFalse(FP16.lessEquals(FP16.toHalf(1.0f), FP16.toHalf(0.0f))); in testLessEquals()
341 assertFalse(FP16.lessEquals(FP16.toHalf(0.0f), FP16.toHalf(-0.1f))); in testLessEquals()
343 assertFalse(FP16.lessEquals(FP16.toHalf(0.1f), FP16.toHalf(0.0f))); in testLessEquals()