Return-Path: X-Original-To: apmail-commons-issues-archive@minotaur.apache.org Delivered-To: apmail-commons-issues-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 84BED77E9 for ; Thu, 1 Dec 2011 09:38:04 +0000 (UTC) Received: (qmail 70438 invoked by uid 500); 1 Dec 2011 09:38:03 -0000 Delivered-To: apmail-commons-issues-archive@commons.apache.org Received: (qmail 70259 invoked by uid 500); 1 Dec 2011 09:38:03 -0000 Mailing-List: contact issues-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: issues@commons.apache.org Delivered-To: mailing list issues@commons.apache.org Received: (qmail 69526 invoked by uid 99); 1 Dec 2011 09:38:01 -0000 Received: from athena.apache.org (HELO athena.apache.org) (140.211.11.136) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Dec 2011 09:38:01 +0000 X-ASF-Spam-Status: No, hits=-2001.2 required=5.0 tests=ALL_TRUSTED,RP_MATCHES_RCVD X-Spam-Check-By: apache.org Received: from [140.211.11.116] (HELO hel.zones.apache.org) (140.211.11.116) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 01 Dec 2011 09:38:00 +0000 Received: from hel.zones.apache.org (hel.zones.apache.org [140.211.11.116]) by hel.zones.apache.org (Postfix) with ESMTP id 470FCAB7E7 for ; Thu, 1 Dec 2011 09:37:40 +0000 (UTC) Date: Thu, 1 Dec 2011 09:37:40 +0000 (UTC) From: "Pascal Parraud (Created) (JIRA)" To: issues@commons.apache.org Message-ID: <884296961.30286.1322732260292.JavaMail.tomcat@hel.zones.apache.org> Subject: [jira] [Created] (MATH-716) BracketingNthOrderBrentSolver exceeds maxIterationCount while updating always the same boundary MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-JIRA-FingerPrint: 30527f35849b9dde25b450d4833f0394 BracketingNthOrderBrentSolver exceeds maxIterationCount while updating always the same boundary ----------------------------------------------------------------------------------------------- Key: MATH-716 URL: https://issues.apache.org/jira/browse/MATH-716 Project: Commons Math Issue Type: Bug Affects Versions: 3.0 Reporter: Pascal Parraud Priority: Minor In some cases, the aging feature in BracketingNthOrderBrentSolver fails. It attempts to balance the bracketing points by targeting a non-zero value instead of the real root. However, the chosen target is too close too zero, and the inverse polynomial approximation is always on the same side, thus always updates the same bracket. In the real used case for a large program, I had a bracket point xA = 12500.0, yA = 3.7e-16, agingA = 0, which is the (really good) estimate of the zero on one side of the root and xB = 12500.03, yB = -7.0e-5, agingB = 97. This shows that the bracketing interval is completely unbalanced, and we never succeed to rebalance it as we always updates (xA, yA) and never updates (xB, yB). -- This message is automatically generated by JIRA. If you think it was sent incorrectly, please contact your JIRA administrators: https://issues.apache.org/jira/secure/ContactAdministrators!default.jspa For more information on JIRA, see: http://www.atlassian.com/software/jira