Return-Path: Delivered-To: apmail-harmony-commits-archive@www.apache.org Received: (qmail 77781 invoked from network); 14 Sep 2009 12:46:20 -0000 Received: from hermes.apache.org (HELO mail.apache.org) (140.211.11.3) by minotaur.apache.org with SMTP; 14 Sep 2009 12:46:20 -0000 Received: (qmail 31558 invoked by uid 500); 14 Sep 2009 12:46:19 -0000 Delivered-To: apmail-harmony-commits-archive@harmony.apache.org Received: (qmail 31531 invoked by uid 500); 14 Sep 2009 12:46:19 -0000 Mailing-List: contact commits-help@harmony.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@harmony.apache.org Delivered-To: mailing list commits@harmony.apache.org Received: (qmail 31522 invoked by uid 99); 14 Sep 2009 12:46:19 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Sep 2009 12:46:19 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=10.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.140] (HELO brutus.apache.org) (140.211.11.140) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 14 Sep 2009 12:46:17 +0000 Received: from brutus (localhost [127.0.0.1]) by brutus.apache.org (Postfix) with ESMTP id 7412C234C045 for ; Mon, 14 Sep 2009 05:45:57 -0700 (PDT) Message-ID: <1204310717.1252932357474.JavaMail.jira@brutus> Date: Mon, 14 Sep 2009 05:45:57 -0700 (PDT) From: "Tim Ellison (JIRA)" To: commits@harmony.apache.org Subject: [jira] Commented: (HARMONY-6339) [classlib] [math] Sample test case showing Math differences In-Reply-To: <332426005.1252501138465.JavaMail.jira@brutus> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 X-Virus-Checked: Checked by ClamAV on apache.org [ https://issues.apache.org/jira/browse/HARMONY-6339?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12754962#action_12754962 ] Tim Ellison commented on HARMONY-6339: -------------------------------------- Invalid code reverted, and simple test case added, at repo revision r814620. Please verify this fixes the issue. > [classlib] [math] Sample test case showing Math differences > ----------------------------------------------------------- > > Key: HARMONY-6339 > URL: https://issues.apache.org/jira/browse/HARMONY-6339 > Project: Harmony > Issue Type: Bug > Components: Classlib > Reporter: Sebb > Assignee: Tim Ellison > > Below is a simple test case which works in the Sun Java 1.5 but fails in Harmony. > This is derived from the HyperGeometricDistribution test, but is hopefully a bit easier to debug. > import org.apache.commons.math.util.MathUtils; > public class HarmMath { > private static void bcl(int m, int x, double exp){ > final double logmx = MathUtils.binomialCoefficientLog(m, x); > System.out.println(m+","+x+"="+logmx+" "+(logmx==exp?" == ":" != ")+" "+exp); > } > public static void main(String[] args) { > int[][]mk={{101,84},{101,83},{101,60},{101,18},{101,17}}; > double[]r={43.52547252799755,45.065917568944705,65.69211086727145,45.065917568944705,43.52547252799755}; > for(int j=0; j bcl(mk[j][0],mk[j][1],r[j]); > } > } > } > The cases 101,83; 101,60; and 101,18 generate different results on Harmony. -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.