You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@harmony.apache.org by "Geir Magnusson Jr (JIRA)" <ji...@apache.org> on 2005/12/21 01:27:35 UTC

[jira] Assigned: (HARMONY-22) Double NaN should compare greater than positive infinity

     [ http://issues.apache.org/jira/browse/HARMONY-22?page=all ]

Geir Magnusson Jr reassigned HARMONY-22:
----------------------------------------

    Assign To: Tim Ellison  (was: Geir Magnusson Jr)

you broke it.  you fix it :)

> Double NaN should compare greater than positive infinity
> --------------------------------------------------------
>
>          Key: HARMONY-22
>          URL: http://issues.apache.org/jira/browse/HARMONY-22
>      Project: Harmony
>         Type: Bug
>   Components: Classlib
>     Reporter: Tim Ellison
>     Assignee: Tim Ellison

>
> java.lang.Double.compareTo(java.lang.Double) should answer that  Double.NaN is greater than Double.POSITIVE_INFINITY.
> Here's a test case that demonstrates the problem:
> 	public void testDoubleCompare() {
> 		Double nonNumber = new Double(Double.NaN);
> 		Double infinity = new Double(Double.POSITIVE_INFINITY);
> 		int indicator = nonNumber.compareTo(infinity);
> 		assertEquals("Incorrect comparison result", 1, indicator);
> 	}

-- 
This message is automatically generated by JIRA.
-
If you think it was sent incorrectly contact one of the administrators:
   http://issues.apache.org/jira/secure/Administrators.jspa
-
For more information on JIRA, see:
   http://www.atlassian.com/software/jira