Return-Path: Delivered-To: apmail-commons-issues-archive@minotaur.apache.org Received: (qmail 4815 invoked from network); 2 Dec 2010 00:18:35 -0000 Received: from unknown (HELO mail.apache.org) (140.211.11.3) by 140.211.11.9 with SMTP; 2 Dec 2010 00:18:35 -0000 Received: (qmail 31324 invoked by uid 500); 2 Dec 2010 00:18:35 -0000 Delivered-To: apmail-commons-issues-archive@commons.apache.org Received: (qmail 31263 invoked by uid 500); 2 Dec 2010 00:18:35 -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 31255 invoked by uid 99); 2 Dec 2010 00:18:35 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Dec 2010 00:18:35 +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.22] (HELO thor.apache.org) (140.211.11.22) by apache.org (qpsmtpd/0.29) with ESMTP; Thu, 02 Dec 2010 00:18:32 +0000 Received: from thor (localhost [127.0.0.1]) by thor.apache.org (8.13.8+Sun/8.13.8) with ESMTP id oB20IBZv021262 for ; Thu, 2 Dec 2010 00:18:11 GMT Message-ID: <6852100.59741291249091053.JavaMail.jira@thor> Date: Wed, 1 Dec 2010 19:18:11 -0500 (EST) From: "Gilles (JIRA)" To: issues@commons.apache.org Subject: [jira] Commented: (MATH-439) Refactoring of solvers (package "analysis.solvers") In-Reply-To: <18591924.45371289567236619.JavaMail.jira@thor> 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/MATH-439?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=12965935#action_12965935 ] Gilles commented on MATH-439: ----------------------------- {{UnivariateRealSolverImpl}} removed in revision 1041225. > Refactoring of solvers (package "analysis.solvers") > --------------------------------------------------- > > Key: MATH-439 > URL: https://issues.apache.org/jira/browse/MATH-439 > Project: Commons Math > Issue Type: Improvement > Reporter: Gilles > Priority: Minor > Fix For: 3.0 > > Attachments: AbstractUnivariateRealSolver.java, NLCG.testCircleFitting.txt > > > The classes in package "analysis.solvers" could be refactored similarly to what was done for package {{optimization}}. > * Replace {{MaxIterationsExceededException}} with {{TooManyEvaluationsException}}: > Apart from the class {{MaxIterationsExceededException}} being deprecated, this approach makes it difficult to compare different algorithms: While the concept of iteration is algorithm-dependent, the user is probably mostly interested in the number of function evaluations. > * Implement the method {{solve}} in the base class ({{UnivariateRealSolverImpl}}) and define an abstract method {{doSolve}} to be implemented in derived classes. This method would then use a new {{computeObjectiveFunction}} method that will take care of the counting of the function evaluations. > * Remove "protected" fields (the root is unnecessary since it is returned by {{solve}}). Arguingly the function value is also not very useful (as we know what it should be), except for debugging purposes (in which case, it might not be a problem to call the function's {{value}} method once more). > * Remove the tolerance setter (accuracy) and make the corresponding fields "final". -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.