Return-Path: X-Original-To: apmail-commons-commits-archive@minotaur.apache.org Delivered-To: apmail-commons-commits-archive@minotaur.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 181A8956A for ; Tue, 14 Feb 2012 16:20:22 +0000 (UTC) Received: (qmail 76883 invoked by uid 500); 14 Feb 2012 16:20:21 -0000 Delivered-To: apmail-commons-commits-archive@commons.apache.org Received: (qmail 76823 invoked by uid 500); 14 Feb 2012 16:20:21 -0000 Mailing-List: contact commits-help@commons.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: dev@commons.apache.org Delivered-To: mailing list commits@commons.apache.org Received: (qmail 76814 invoked by uid 99); 14 Feb 2012 16:20:21 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Feb 2012 16:20:21 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 14 Feb 2012 16:20:07 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id C61FC23889E7 for ; Tue, 14 Feb 2012 16:19:44 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1244107 [3/18] - in /commons/proper/math/trunk: ./ src/main/java/org/apache/commons/math/ src/main/java/org/apache/commons/math3/ src/main/java/org/apache/commons/math3/analysis/ src/main/java/org/apache/commons/math3/analysis/function/ sr... Date: Tue, 14 Feb 2012 16:18:50 -0000 To: commits@commons.apache.org From: erans@apache.org X-Mailer: svnmailer-1.0.8-patched Message-Id: <20120214161944.C61FC23889E7@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/function/Ulp.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/function/Ulp.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/function/Ulp.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/function/Ulp.java Tue Feb 14 16:17:55 2012 @@ -15,10 +15,10 @@ * limitations under the License. */ -package org.apache.commons.math.analysis.function; +package org.apache.commons.math3.analysis.function; -import org.apache.commons.math.analysis.UnivariateFunction; -import org.apache.commons.math.util.FastMath; +import org.apache.commons.math3.analysis.UnivariateFunction; +import org.apache.commons.math3.util.FastMath; /** * {@code ulp} function. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/function/package-info.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/function/package-info.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/function/package-info.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/function/package-info.java Tue Feb 14 16:17:55 2012 @@ -23,4 +23,4 @@ *

* */ -package org.apache.commons.math.analysis.function; +package org.apache.commons.math3.analysis.function; Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/BaseAbstractUnivariateIntegrator.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/BaseAbstractUnivariateIntegrator.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/BaseAbstractUnivariateIntegrator.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/BaseAbstractUnivariateIntegrator.java Tue Feb 14 16:17:55 2012 @@ -14,18 +14,18 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.integration; +package org.apache.commons.math3.analysis.integration; -import org.apache.commons.math.analysis.UnivariateFunction; -import org.apache.commons.math.analysis.solvers.UnivariateSolverUtils; -import org.apache.commons.math.exception.MathIllegalArgumentException; -import org.apache.commons.math.exception.MaxCountExceededException; -import org.apache.commons.math.exception.NotStrictlyPositiveException; -import org.apache.commons.math.exception.NullArgumentException; -import org.apache.commons.math.exception.NumberIsTooSmallException; -import org.apache.commons.math.exception.TooManyEvaluationsException; -import org.apache.commons.math.util.Incrementor; -import org.apache.commons.math.util.MathUtils; +import org.apache.commons.math3.analysis.UnivariateFunction; +import org.apache.commons.math3.analysis.solvers.UnivariateSolverUtils; +import org.apache.commons.math3.exception.MathIllegalArgumentException; +import org.apache.commons.math3.exception.MaxCountExceededException; +import org.apache.commons.math3.exception.NotStrictlyPositiveException; +import org.apache.commons.math3.exception.NullArgumentException; +import org.apache.commons.math3.exception.NumberIsTooSmallException; +import org.apache.commons.math3.exception.TooManyEvaluationsException; +import org.apache.commons.math3.util.Incrementor; +import org.apache.commons.math3.util.MathUtils; /** * Provide a default implementation for several generic functions. @@ -81,7 +81,7 @@ public abstract class BaseAbstractUnivar * achieved due to large values or short mantissa length. If this * should be the primary criterion for convergence rather then a * safety measure, set the absolute accuracy to a ridiculously small value, - * like {@link org.apache.commons.math.util.Precision#SAFE_MIN Precision.SAFE_MIN}. + * like {@link org.apache.commons.math3.util.Precision#SAFE_MIN Precision.SAFE_MIN}. *
  • absolute accuracy: * The default is usually chosen so that results in the interval * -10..-0.1 and +0.1..+10 can be found with a reasonable accuracy. If the Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/LegendreGaussIntegrator.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/LegendreGaussIntegrator.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/LegendreGaussIntegrator.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/LegendreGaussIntegrator.java Tue Feb 14 16:17:55 2012 @@ -14,15 +14,15 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.integration; +package org.apache.commons.math3.analysis.integration; -import org.apache.commons.math.exception.MathIllegalArgumentException; -import org.apache.commons.math.exception.MaxCountExceededException; -import org.apache.commons.math.exception.NotStrictlyPositiveException; -import org.apache.commons.math.exception.NumberIsTooSmallException; -import org.apache.commons.math.exception.TooManyEvaluationsException; -import org.apache.commons.math.exception.util.LocalizedFormats; -import org.apache.commons.math.util.FastMath; +import org.apache.commons.math3.exception.MathIllegalArgumentException; +import org.apache.commons.math3.exception.MaxCountExceededException; +import org.apache.commons.math3.exception.NotStrictlyPositiveException; +import org.apache.commons.math3.exception.NumberIsTooSmallException; +import org.apache.commons.math3.exception.TooManyEvaluationsException; +import org.apache.commons.math3.exception.util.LocalizedFormats; +import org.apache.commons.math3.util.FastMath; /** * Implements the Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/RombergIntegrator.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/RombergIntegrator.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/RombergIntegrator.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/RombergIntegrator.java Tue Feb 14 16:17:55 2012 @@ -14,14 +14,14 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.integration; +package org.apache.commons.math3.analysis.integration; -import org.apache.commons.math.exception.MaxCountExceededException; -import org.apache.commons.math.exception.NotStrictlyPositiveException; -import org.apache.commons.math.exception.NumberIsTooLargeException; -import org.apache.commons.math.exception.NumberIsTooSmallException; -import org.apache.commons.math.exception.TooManyEvaluationsException; -import org.apache.commons.math.util.FastMath; +import org.apache.commons.math3.exception.MaxCountExceededException; +import org.apache.commons.math3.exception.NotStrictlyPositiveException; +import org.apache.commons.math3.exception.NumberIsTooLargeException; +import org.apache.commons.math3.exception.NumberIsTooSmallException; +import org.apache.commons.math3.exception.TooManyEvaluationsException; +import org.apache.commons.math3.util.FastMath; /** * Implements the Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/SimpsonIntegrator.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/SimpsonIntegrator.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/SimpsonIntegrator.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/SimpsonIntegrator.java Tue Feb 14 16:17:55 2012 @@ -14,14 +14,14 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.integration; +package org.apache.commons.math3.analysis.integration; -import org.apache.commons.math.exception.MaxCountExceededException; -import org.apache.commons.math.exception.NotStrictlyPositiveException; -import org.apache.commons.math.exception.NumberIsTooLargeException; -import org.apache.commons.math.exception.NumberIsTooSmallException; -import org.apache.commons.math.exception.TooManyEvaluationsException; -import org.apache.commons.math.util.FastMath; +import org.apache.commons.math3.exception.MaxCountExceededException; +import org.apache.commons.math3.exception.NotStrictlyPositiveException; +import org.apache.commons.math3.exception.NumberIsTooLargeException; +import org.apache.commons.math3.exception.NumberIsTooSmallException; +import org.apache.commons.math3.exception.TooManyEvaluationsException; +import org.apache.commons.math3.util.FastMath; /** * Implements Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/TrapezoidIntegrator.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/TrapezoidIntegrator.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/TrapezoidIntegrator.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/TrapezoidIntegrator.java Tue Feb 14 16:17:55 2012 @@ -14,14 +14,14 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.integration; +package org.apache.commons.math3.analysis.integration; -import org.apache.commons.math.exception.MaxCountExceededException; -import org.apache.commons.math.exception.NotStrictlyPositiveException; -import org.apache.commons.math.exception.NumberIsTooLargeException; -import org.apache.commons.math.exception.NumberIsTooSmallException; -import org.apache.commons.math.exception.TooManyEvaluationsException; -import org.apache.commons.math.util.FastMath; +import org.apache.commons.math3.exception.MaxCountExceededException; +import org.apache.commons.math3.exception.NotStrictlyPositiveException; +import org.apache.commons.math3.exception.NumberIsTooLargeException; +import org.apache.commons.math3.exception.NumberIsTooSmallException; +import org.apache.commons.math3.exception.TooManyEvaluationsException; +import org.apache.commons.math3.util.FastMath; /** * Implements the Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/UnivariateIntegrator.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/UnivariateIntegrator.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/UnivariateIntegrator.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/UnivariateIntegrator.java Tue Feb 14 16:17:55 2012 @@ -14,13 +14,13 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.integration; +package org.apache.commons.math3.analysis.integration; -import org.apache.commons.math.analysis.UnivariateFunction; -import org.apache.commons.math.exception.MathIllegalArgumentException; -import org.apache.commons.math.exception.MaxCountExceededException; -import org.apache.commons.math.exception.NullArgumentException; -import org.apache.commons.math.exception.TooManyEvaluationsException; +import org.apache.commons.math3.analysis.UnivariateFunction; +import org.apache.commons.math3.exception.MathIllegalArgumentException; +import org.apache.commons.math3.exception.MaxCountExceededException; +import org.apache.commons.math3.exception.NullArgumentException; +import org.apache.commons.math3.exception.TooManyEvaluationsException; /** * Interface for univariate real integration algorithms. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/package-info.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/package-info.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/package-info.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/integration/package-info.java Tue Feb 14 16:17:55 2012 @@ -19,4 +19,4 @@ * Numerical integration (quadrature) algorithms for univariate real functions. * */ -package org.apache.commons.math.analysis.integration; +package org.apache.commons.math3.analysis.integration; Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolatingFunction.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolatingFunction.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolatingFunction.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolatingFunction.java Tue Feb 14 16:17:55 2012 @@ -14,13 +14,13 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.interpolation; +package org.apache.commons.math3.analysis.interpolation; -import org.apache.commons.math.analysis.BivariateFunction; -import org.apache.commons.math.exception.DimensionMismatchException; -import org.apache.commons.math.exception.NoDataException; -import org.apache.commons.math.exception.OutOfRangeException; -import org.apache.commons.math.util.MathArrays; +import org.apache.commons.math3.analysis.BivariateFunction; +import org.apache.commons.math3.exception.DimensionMismatchException; +import org.apache.commons.math3.exception.NoDataException; +import org.apache.commons.math3.exception.OutOfRangeException; +import org.apache.commons.math3.util.MathArrays; /** * Function that implements the @@ -84,7 +84,7 @@ public class BicubicSplineInterpolatingF * every grid point. * @throws DimensionMismatchException if the various arrays do not contain * the expected number of elements. - * @throws org.apache.commons.math.exception.NonMonotonicSequenceException + * @throws org.apache.commons.math3.exception.NonMonotonicSequenceException * if {@code x} or {@code y} are not strictly increasing. * @throws NoDataException if any of the arrays has zero length. */ Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolator.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolator.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolator.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolator.java Tue Feb 14 16:17:55 2012 @@ -14,13 +14,13 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.interpolation; +package org.apache.commons.math3.analysis.interpolation; -import org.apache.commons.math.analysis.UnivariateFunction; -import org.apache.commons.math.analysis.polynomials.PolynomialSplineFunction; -import org.apache.commons.math.exception.DimensionMismatchException; -import org.apache.commons.math.exception.NoDataException; -import org.apache.commons.math.util.MathArrays; +import org.apache.commons.math3.analysis.UnivariateFunction; +import org.apache.commons.math3.analysis.polynomials.PolynomialSplineFunction; +import org.apache.commons.math3.exception.DimensionMismatchException; +import org.apache.commons.math3.exception.NoDataException; +import org.apache.commons.math3.util.MathArrays; /** * Generates a bicubic interpolating function. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/BivariateGridInterpolator.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/BivariateGridInterpolator.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/BivariateGridInterpolator.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/BivariateGridInterpolator.java Tue Feb 14 16:17:55 2012 @@ -14,9 +14,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.interpolation; +package org.apache.commons.math3.analysis.interpolation; -import org.apache.commons.math.analysis.BivariateFunction; +import org.apache.commons.math3.analysis.BivariateFunction; /** * Interface representing a bivariate real interpolating function where the @@ -35,9 +35,9 @@ public interface BivariateGridInterpolat * @param fval The values of the interpolation points on all the grid knots: * {@code fval[i][j] = f(xval[i], yval[j])}. * @return a function which interpolates the dataset. - * @throws org.apache.commons.math.exception.NoDataException if any of + * @throws org.apache.commons.math3.exception.NoDataException if any of * the arrays has zero length. - * @throws org.apache.commons.math.exception.DimensionMismatchException + * @throws org.apache.commons.math3.exception.DimensionMismatchException * if the array lengths are inconsistent. */ BivariateFunction interpolate(double[] xval, double[] yval, Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/DividedDifferenceInterpolator.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/DividedDifferenceInterpolator.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/DividedDifferenceInterpolator.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/DividedDifferenceInterpolator.java Tue Feb 14 16:17:55 2012 @@ -14,11 +14,11 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.interpolation; +package org.apache.commons.math3.analysis.interpolation; import java.io.Serializable; -import org.apache.commons.math.analysis.polynomials.PolynomialFunctionLagrangeForm; -import org.apache.commons.math.analysis.polynomials.PolynomialFunctionNewtonForm; +import org.apache.commons.math3.analysis.polynomials.PolynomialFunctionLagrangeForm; +import org.apache.commons.math3.analysis.polynomials.PolynomialFunctionNewtonForm; /** * Implements the @@ -160,18 +160,18 @@ public class LoessInterpolator * Compute an interpolating function by performing a loess fit * on the data at the original abscissae and then building a cubic spline * with a - * {@link org.apache.commons.math.analysis.interpolation.SplineInterpolator} + * {@link org.apache.commons.math3.analysis.interpolation.SplineInterpolator} * on the resulting fit. * * @param xval the arguments for the interpolation points * @param yval the values for the interpolation points * @return A cubic spline built upon a loess fit to the data at the original abscissae - * @throws org.apache.commons.math.exception.NonMonotonicSequenceException + * @throws org.apache.commons.math3.exception.NonMonotonicSequenceException * if {@code xval} not sorted in strictly increasing order. * @throws DimensionMismatchException if {@code xval} and {@code yval} have * different sizes. * @throws NoDataException if {@code xval} or {@code yval} has zero size. - * @throws org.apache.commons.math.exception.NotFiniteNumberException if + * @throws org.apache.commons.math3.exception.NotFiniteNumberException if * any of the arguments and values are not finite real numbers. * @throws NumberIsTooSmallException if the bandwidth is too small to * accomodate the size of the input data (i.e. the bandwidth must be @@ -189,12 +189,12 @@ public class LoessInterpolator * @param weights point weights: coefficients by which the robustness weight * of a point is multiplied. * @return the values of the loess fit at corresponding original abscissae. - * @throws org.apache.commons.math.exception.NonMonotonicSequenceException + * @throws org.apache.commons.math3.exception.NonMonotonicSequenceException * if {@code xval} not sorted in strictly increasing order. * @throws DimensionMismatchException if {@code xval} and {@code yval} have * different sizes. * @throws NoDataException if {@code xval} or {@code yval} has zero size. - * @throws org.apache.commons.math.exception.NotFiniteNumberException if + * @throws org.apache.commons.math3.exception.NotFiniteNumberException if * any of the arguments and values are not finite real numbers. * @throws NumberIsTooSmallException if the bandwidth is too small to * accomodate the size of the input data (i.e. the bandwidth must be @@ -353,12 +353,12 @@ public class LoessInterpolator * @param xval the arguments for the interpolation points * @param yval the values for the interpolation points * @return values of the loess fit at corresponding original abscissae - * @throws org.apache.commons.math.exception.NonMonotonicSequenceException + * @throws org.apache.commons.math3.exception.NonMonotonicSequenceException * if {@code xval} not sorted in strictly increasing order. * @throws DimensionMismatchException if {@code xval} and {@code yval} have * different sizes. * @throws NoDataException if {@code xval} or {@code yval} has zero size. - * @throws org.apache.commons.math.exception.NotFiniteNumberException if + * @throws org.apache.commons.math3.exception.NotFiniteNumberException if * any of the arguments and values are not finite real numbers. * @throws NumberIsTooSmallException if the bandwidth is too small to * accomodate the size of the input data (i.e. the bandwidth must be @@ -443,7 +443,7 @@ public class LoessInterpolator * Check that all elements of an array are finite real numbers. * * @param values Values array. - * @throws org.apache.commons.math.exception.NotFiniteNumberException + * @throws org.apache.commons.math3.exception.NotFiniteNumberException * if one of the values is not a finite real number. */ private static void checkAllFiniteReal(final double[] values) { Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/MicrosphereInterpolatingFunction.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/MicrosphereInterpolatingFunction.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/MicrosphereInterpolatingFunction.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/MicrosphereInterpolatingFunction.java Tue Feb 14 16:17:55 2012 @@ -14,21 +14,21 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.interpolation; +package org.apache.commons.math3.analysis.interpolation; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; -import org.apache.commons.math.analysis.MultivariateFunction; -import org.apache.commons.math.exception.DimensionMismatchException; -import org.apache.commons.math.exception.NoDataException; -import org.apache.commons.math.exception.NullArgumentException; -import org.apache.commons.math.linear.ArrayRealVector; -import org.apache.commons.math.linear.RealVector; -import org.apache.commons.math.random.UnitSphereRandomVectorGenerator; -import org.apache.commons.math.util.FastMath; +import org.apache.commons.math3.analysis.MultivariateFunction; +import org.apache.commons.math3.exception.DimensionMismatchException; +import org.apache.commons.math3.exception.NoDataException; +import org.apache.commons.math3.exception.NullArgumentException; +import org.apache.commons.math3.linear.ArrayRealVector; +import org.apache.commons.math3.linear.RealVector; +import org.apache.commons.math3.random.UnitSphereRandomVectorGenerator; +import org.apache.commons.math3.util.FastMath; /** * Interpolating function that implements the Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/MicrosphereInterpolator.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/MicrosphereInterpolator.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/MicrosphereInterpolator.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/MicrosphereInterpolator.java Tue Feb 14 16:17:55 2012 @@ -14,12 +14,12 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.interpolation; +package org.apache.commons.math3.analysis.interpolation; -import org.apache.commons.math.analysis.MultivariateFunction; -import org.apache.commons.math.exception.NotPositiveException; -import org.apache.commons.math.exception.NotStrictlyPositiveException; -import org.apache.commons.math.random.UnitSphereRandomVectorGenerator; +import org.apache.commons.math3.analysis.MultivariateFunction; +import org.apache.commons.math3.exception.NotPositiveException; +import org.apache.commons.math3.exception.NotStrictlyPositiveException; +import org.apache.commons.math3.random.UnitSphereRandomVectorGenerator; /** * Interpolator that implements the algorithm described in Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/MultivariateInterpolator.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/MultivariateInterpolator.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/MultivariateInterpolator.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/MultivariateInterpolator.java Tue Feb 14 16:17:55 2012 @@ -14,9 +14,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.interpolation; +package org.apache.commons.math3.analysis.interpolation; -import org.apache.commons.math.analysis.MultivariateFunction; +import org.apache.commons.math3.analysis.MultivariateFunction; /** * Interface representing a univariate real interpolating function. @@ -36,14 +36,14 @@ public interface MultivariateInterpolato * point (where {@code d} is thus the dimension of the space). * @param yval the values for the interpolation points * @return a function which interpolates the data set - * @throws org.apache.commons.math.exception.MathIllegalArgumentException + * @throws org.apache.commons.math3.exception.MathIllegalArgumentException * if the arguments violate assumptions made by the interpolation * algorithm. - * @throws org.apache.commons.math.exception.DimensionMismatchException + * @throws org.apache.commons.math3.exception.DimensionMismatchException * when the array dimensions are not consistent. - * @throws org.apache.commons.math.exception.NoDataException if an + * @throws org.apache.commons.math3.exception.NoDataException if an * array has zero-length. - * @throws org.apache.commons.math.exception.NullArgumentException if + * @throws org.apache.commons.math3.exception.NullArgumentException if * the arguments are {@code null}. */ MultivariateFunction interpolate(double[][] xval, double[] yval); Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/NevilleInterpolator.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/NevilleInterpolator.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/NevilleInterpolator.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/NevilleInterpolator.java Tue Feb 14 16:17:55 2012 @@ -14,11 +14,11 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.interpolation; +package org.apache.commons.math3.analysis.interpolation; import java.io.Serializable; -import org.apache.commons.math.analysis.polynomials.PolynomialFunctionLagrangeForm; +import org.apache.commons.math3.analysis.polynomials.PolynomialFunctionLagrangeForm; /** * Implements the @@ -44,11 +44,11 @@ public class NevilleInterpolator impleme * @param x the interpolating points array * @param y the interpolating values array * @return a function which interpolates the data set - * @throws org.apache.commons.math.exception.DimensionMismatchException if + * @throws org.apache.commons.math3.exception.DimensionMismatchException if * the array lengths are different. - * @throws org.apache.commons.math.exception.NumberIsTooSmallException if + * @throws org.apache.commons.math3.exception.NumberIsTooSmallException if * the number of points is less than 2. - * @throws org.apache.commons.math.exception.NonMonotonicSequenceException + * @throws org.apache.commons.math3.exception.NonMonotonicSequenceException * if two abscissae have the same value. */ public PolynomialFunctionLagrangeForm interpolate(double x[], double y[]) { Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/SmoothingPolynomialBicubicSplineInterpolator.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/SmoothingPolynomialBicubicSplineInterpolator.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/SmoothingPolynomialBicubicSplineInterpolator.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/SmoothingPolynomialBicubicSplineInterpolator.java Tue Feb 14 16:17:55 2012 @@ -14,14 +14,14 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.interpolation; +package org.apache.commons.math3.analysis.interpolation; -import org.apache.commons.math.exception.DimensionMismatchException; -import org.apache.commons.math.exception.NoDataException; -import org.apache.commons.math.util.MathArrays; -import org.apache.commons.math.optimization.general.GaussNewtonOptimizer; -import org.apache.commons.math.optimization.fitting.PolynomialFitter; -import org.apache.commons.math.analysis.polynomials.PolynomialFunction; +import org.apache.commons.math3.exception.DimensionMismatchException; +import org.apache.commons.math3.exception.NoDataException; +import org.apache.commons.math3.util.MathArrays; +import org.apache.commons.math3.optimization.general.GaussNewtonOptimizer; +import org.apache.commons.math3.optimization.fitting.PolynomialFitter; +import org.apache.commons.math3.analysis.polynomials.PolynomialFunction; /** * Generates a bicubic interpolation function. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/SplineInterpolator.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/SplineInterpolator.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/SplineInterpolator.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/SplineInterpolator.java Tue Feb 14 16:17:55 2012 @@ -14,14 +14,14 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.interpolation; +package org.apache.commons.math3.analysis.interpolation; -import org.apache.commons.math.exception.DimensionMismatchException; -import org.apache.commons.math.exception.util.LocalizedFormats; -import org.apache.commons.math.exception.NumberIsTooSmallException; -import org.apache.commons.math.analysis.polynomials.PolynomialFunction; -import org.apache.commons.math.analysis.polynomials.PolynomialSplineFunction; -import org.apache.commons.math.util.MathArrays; +import org.apache.commons.math3.exception.DimensionMismatchException; +import org.apache.commons.math3.exception.util.LocalizedFormats; +import org.apache.commons.math3.exception.NumberIsTooSmallException; +import org.apache.commons.math3.analysis.polynomials.PolynomialFunction; +import org.apache.commons.math3.analysis.polynomials.PolynomialSplineFunction; +import org.apache.commons.math3.util.MathArrays; /** * Computes a natural (also known as "free", "unclamped") cubic spline interpolation for the data set. @@ -59,7 +59,7 @@ public class SplineInterpolator implemen * @return a function which interpolates the data set * @throws DimensionMismatchException if {@code x} and {@code y} * have different sizes. - * @throws org.apache.commons.math.exception.NonMonotonicSequenceException + * @throws org.apache.commons.math3.exception.NonMonotonicSequenceException * if {@code x} is not sorted in strict increasing order. * @throws NumberIsTooSmallException if the size of {@code x} is smaller * than 3. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/TricubicSplineInterpolatingFunction.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/TricubicSplineInterpolatingFunction.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/TricubicSplineInterpolatingFunction.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/TricubicSplineInterpolatingFunction.java Tue Feb 14 16:17:55 2012 @@ -14,13 +14,13 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.interpolation; +package org.apache.commons.math3.analysis.interpolation; -import org.apache.commons.math.analysis.TrivariateFunction; -import org.apache.commons.math.exception.DimensionMismatchException; -import org.apache.commons.math.exception.NoDataException; -import org.apache.commons.math.exception.OutOfRangeException; -import org.apache.commons.math.util.MathArrays; +import org.apache.commons.math3.analysis.TrivariateFunction; +import org.apache.commons.math3.exception.DimensionMismatchException; +import org.apache.commons.math3.exception.NoDataException; +import org.apache.commons.math3.exception.OutOfRangeException; +import org.apache.commons.math3.util.MathArrays; /** * Function that implements the Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/TricubicSplineInterpolator.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/TricubicSplineInterpolator.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/TricubicSplineInterpolator.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/TricubicSplineInterpolator.java Tue Feb 14 16:17:55 2012 @@ -14,11 +14,11 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.interpolation; +package org.apache.commons.math3.analysis.interpolation; -import org.apache.commons.math.exception.DimensionMismatchException; -import org.apache.commons.math.exception.NoDataException; -import org.apache.commons.math.util.MathArrays; +import org.apache.commons.math3.exception.DimensionMismatchException; +import org.apache.commons.math3.exception.NoDataException; +import org.apache.commons.math3.util.MathArrays; /** * Generates a tricubic interpolating function. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/TrivariateGridInterpolator.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/TrivariateGridInterpolator.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/TrivariateGridInterpolator.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/TrivariateGridInterpolator.java Tue Feb 14 16:17:55 2012 @@ -14,9 +14,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.interpolation; +package org.apache.commons.math3.analysis.interpolation; -import org.apache.commons.math.analysis.TrivariateFunction; +import org.apache.commons.math3.analysis.TrivariateFunction; /** * Interface representing a trivariate real interpolating function where the @@ -38,9 +38,9 @@ public interface TrivariateGridInterpola * @param fval the values of the interpolation points on all the grid knots: * {@code fval[i][j][k] = f(xval[i], yval[j], zval[k])}. * @return a function that interpolates the data set. - * @throws org.apache.commons.math.exception.NoDataException if any of + * @throws org.apache.commons.math3.exception.NoDataException if any of * the arrays has zero length. - * @throws org.apache.commons.math.exception.DimensionMismatchException + * @throws org.apache.commons.math3.exception.DimensionMismatchException * if the array lengths are inconsistent. */ TrivariateFunction interpolate(double[] xval, double[] yval, double[] zval, Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/UnivariateInterpolator.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/UnivariateInterpolator.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/UnivariateInterpolator.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/UnivariateInterpolator.java Tue Feb 14 16:17:55 2012 @@ -14,9 +14,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.interpolation; +package org.apache.commons.math3.analysis.interpolation; -import org.apache.commons.math.analysis.UnivariateFunction; +import org.apache.commons.math3.analysis.UnivariateFunction; /** * Interface representing a univariate real interpolating function. @@ -30,7 +30,7 @@ public interface UnivariateInterpolator * @param xval Arguments for the interpolation points. * @param yval Values for the interpolation points. * @return a function which interpolates the dataset. - * @throws org.apache.commons.math.exception.MathIllegalArgumentException + * @throws org.apache.commons.math3.exception.MathIllegalArgumentException * if the arguments violate assumptions made by the interpolation * algorithm. */ Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/UnivariatePeriodicInterpolator.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/UnivariatePeriodicInterpolator.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/UnivariatePeriodicInterpolator.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/UnivariatePeriodicInterpolator.java Tue Feb 14 16:17:55 2012 @@ -14,12 +14,12 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.interpolation; +package org.apache.commons.math3.analysis.interpolation; -import org.apache.commons.math.analysis.UnivariateFunction; -import org.apache.commons.math.util.MathUtils; -import org.apache.commons.math.util.MathArrays; -import org.apache.commons.math.exception.NumberIsTooSmallException; +import org.apache.commons.math3.analysis.UnivariateFunction; +import org.apache.commons.math3.util.MathUtils; +import org.apache.commons.math3.util.MathArrays; +import org.apache.commons.math3.exception.NumberIsTooSmallException; /** * Adapter for classes implementing the {@link UnivariateInterpolator} Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/package-info.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/package-info.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/package-info.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/interpolation/package-info.java Tue Feb 14 16:17:55 2012 @@ -19,4 +19,4 @@ * Univariate real functions interpolation algorithms. * */ -package org.apache.commons.math.analysis.interpolation; +package org.apache.commons.math3.analysis.interpolation; Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/package-info.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/package-info.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/package-info.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/package-info.java Tue Feb 14 16:17:55 2012 @@ -30,4 +30,4 @@ *

    * */ -package org.apache.commons.math.analysis; +package org.apache.commons.math3.analysis; Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/polynomials/PolynomialFunction.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/polynomials/PolynomialFunction.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/polynomials/PolynomialFunction.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/polynomials/PolynomialFunction.java Tue Feb 14 16:17:55 2012 @@ -14,19 +14,19 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.polynomials; +package org.apache.commons.math3.analysis.polynomials; import java.io.Serializable; import java.util.Arrays; -import org.apache.commons.math.exception.util.LocalizedFormats; -import org.apache.commons.math.exception.NoDataException; -import org.apache.commons.math.exception.NullArgumentException; -import org.apache.commons.math.analysis.DifferentiableUnivariateFunction; -import org.apache.commons.math.analysis.UnivariateFunction; -import org.apache.commons.math.analysis.ParametricUnivariateFunction; -import org.apache.commons.math.util.FastMath; -import org.apache.commons.math.util.MathUtils; +import org.apache.commons.math3.exception.util.LocalizedFormats; +import org.apache.commons.math3.exception.NoDataException; +import org.apache.commons.math3.exception.NullArgumentException; +import org.apache.commons.math3.analysis.DifferentiableUnivariateFunction; +import org.apache.commons.math3.analysis.UnivariateFunction; +import org.apache.commons.math3.analysis.ParametricUnivariateFunction; +import org.apache.commons.math3.util.FastMath; +import org.apache.commons.math3.util.MathUtils; /** * Immutable representation of a real polynomial function with real coefficients. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/polynomials/PolynomialFunctionLagrangeForm.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/polynomials/PolynomialFunctionLagrangeForm.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/polynomials/PolynomialFunctionLagrangeForm.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/polynomials/PolynomialFunctionLagrangeForm.java Tue Feb 14 16:17:55 2012 @@ -14,14 +14,14 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.polynomials; +package org.apache.commons.math3.analysis.polynomials; -import org.apache.commons.math.analysis.UnivariateFunction; -import org.apache.commons.math.util.FastMath; -import org.apache.commons.math.util.MathArrays; -import org.apache.commons.math.exception.DimensionMismatchException; -import org.apache.commons.math.exception.NumberIsTooSmallException; -import org.apache.commons.math.exception.util.LocalizedFormats; +import org.apache.commons.math3.analysis.UnivariateFunction; +import org.apache.commons.math3.util.FastMath; +import org.apache.commons.math3.util.MathArrays; +import org.apache.commons.math3.exception.DimensionMismatchException; +import org.apache.commons.math3.exception.NumberIsTooSmallException; +import org.apache.commons.math3.exception.util.LocalizedFormats; /** * Implements the representation of a real polynomial function in @@ -65,7 +65,7 @@ public class PolynomialFunctionLagrangeF * @param y function values at interpolating points * @throws DimensionMismatchException if the array lengths are different. * @throws NumberIsTooSmallException if the number of points is less than 2. - * @throws org.apache.commons.math.exception.NonMonotonicSequenceException + * @throws org.apache.commons.math3.exception.NonMonotonicSequenceException * if two abscissae have the same value. */ public PolynomialFunctionLagrangeForm(double x[], double y[]) { @@ -89,7 +89,7 @@ public class PolynomialFunctionLagrangeF * @return the function value. * @throws DimensionMismatchException if {@code x} and {@code y} have * different lengths. - * @throws org.apache.commons.math.exception.NonMonotonicSequenceException + * @throws org.apache.commons.math3.exception.NonMonotonicSequenceException * if {@code x} is not sorted in strictly increasing order. * @throws NumberIsTooSmallException if the size of {@code x} is less * than 2. @@ -163,7 +163,7 @@ public class PolynomialFunctionLagrangeF * @return the function value. * @throws DimensionMismatchException if {@code x} and {@code y} have * different lengths. - * @throws org.apache.commons.math.exception.NonMonotonicSequenceException + * @throws org.apache.commons.math3.exception.NonMonotonicSequenceException * if {@code x} is not sorted in strictly increasing order. * @throws NumberIsTooSmallException if the size of {@code x} is less * than 2. @@ -196,7 +196,7 @@ public class PolynomialFunctionLagrangeF * @return the function value. * @throws DimensionMismatchException if {@code x} and {@code y} have * different lengths. - * @throws org.apache.commons.math.exception.NonMonotonicSequenceException + * @throws org.apache.commons.math3.exception.NonMonotonicSequenceException * if {@code x} is not sorted in strictly increasing order. * @throws NumberIsTooSmallException if the size of {@code x} is less * than 2. @@ -302,7 +302,7 @@ public class PolynomialFunctionLagrangeF * @param abort Whether to throw an exception if {@code x} is not sorted. * @throws DimensionMismatchException if the array lengths are different. * @throws NumberIsTooSmallException if the number of points is less than 2. - * @throws org.apache.commons.math.exception.NonMonotonicSequenceException + * @throws org.apache.commons.math3.exception.NonMonotonicSequenceException * if {@code x} is not sorted in strictly increasing order and {@code abort} * is {@code true}. * @return {@code false} if the {@code x} is not sorted in increasing order, Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/polynomials/PolynomialFunctionNewtonForm.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/polynomials/PolynomialFunctionNewtonForm.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/polynomials/PolynomialFunctionNewtonForm.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/polynomials/PolynomialFunctionNewtonForm.java Tue Feb 14 16:17:55 2012 @@ -14,12 +14,12 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.polynomials; +package org.apache.commons.math3.analysis.polynomials; -import org.apache.commons.math.exception.NoDataException; -import org.apache.commons.math.exception.DimensionMismatchException; -import org.apache.commons.math.analysis.UnivariateFunction; -import org.apache.commons.math.exception.util.LocalizedFormats; +import org.apache.commons.math3.exception.NoDataException; +import org.apache.commons.math3.exception.DimensionMismatchException; +import org.apache.commons.math3.analysis.UnivariateFunction; +import org.apache.commons.math3.exception.util.LocalizedFormats; /** * Implements the representation of a real polynomial function in @@ -68,7 +68,7 @@ public class PolynomialFunctionNewtonFor * * @param a Coefficients in Newton form formula. * @param c Centers. - * @throws org.apache.commons.math.exception.NullArgumentException if + * @throws org.apache.commons.math3.exception.NullArgumentException if * any argument is {@code null}. * @throws NoDataException if any array has zero length. * @throws DimensionMismatchException if the size difference between @@ -154,7 +154,7 @@ public class PolynomialFunctionNewtonFor * @param c Centers. * @param z Point at which the function value is to be computed. * @return the function value. - * @throws org.apache.commons.math.exception.NullArgumentException if + * @throws org.apache.commons.math3.exception.NullArgumentException if * any argument is {@code null}. * @throws NoDataException if any array has zero length. * @throws DimensionMismatchException if the size difference between @@ -203,12 +203,12 @@ public class PolynomialFunctionNewtonFor * * @param a the coefficients in Newton form formula * @param c the centers - * @throws org.apache.commons.math.exception.NullArgumentException if + * @throws org.apache.commons.math3.exception.NullArgumentException if * any argument is {@code null}. * @throws NoDataException if any array has zero length. * @throws DimensionMismatchException if the size difference between * {@code a} and {@code c} is not equal to 1. - * @see org.apache.commons.math.analysis.interpolation.DividedDifferenceInterpolator#computeDividedDifference(double[], + * @see org.apache.commons.math3.analysis.interpolation.DividedDifferenceInterpolator#computeDividedDifference(double[], * double[]) */ protected static void verifyInputArray(double a[], double c[]) { Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/polynomials/PolynomialSplineFunction.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/polynomials/PolynomialSplineFunction.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/polynomials/PolynomialSplineFunction.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/polynomials/PolynomialSplineFunction.java Tue Feb 14 16:17:55 2012 @@ -14,18 +14,18 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.polynomials; +package org.apache.commons.math3.analysis.polynomials; import java.util.Arrays; -import org.apache.commons.math.util.MathArrays; -import org.apache.commons.math.analysis.DifferentiableUnivariateFunction; -import org.apache.commons.math.analysis.UnivariateFunction; -import org.apache.commons.math.exception.OutOfRangeException; -import org.apache.commons.math.exception.NumberIsTooSmallException; -import org.apache.commons.math.exception.DimensionMismatchException; -import org.apache.commons.math.exception.NullArgumentException; -import org.apache.commons.math.exception.util.LocalizedFormats; +import org.apache.commons.math3.util.MathArrays; +import org.apache.commons.math3.analysis.DifferentiableUnivariateFunction; +import org.apache.commons.math3.analysis.UnivariateFunction; +import org.apache.commons.math3.exception.OutOfRangeException; +import org.apache.commons.math3.exception.NumberIsTooSmallException; +import org.apache.commons.math3.exception.DimensionMismatchException; +import org.apache.commons.math3.exception.NullArgumentException; +import org.apache.commons.math3.exception.util.LocalizedFormats; /** * Represents a polynomial spline function. @@ -93,7 +93,7 @@ public class PolynomialSplineFunction im * @throws NullArgumentException if either of the input arrays is {@code null}. * @throws NumberIsTooSmallException if knots has length less than 2. * @throws DimensionMismatchException if {@code polynomials.length != knots.length - 1}. - * @throws org.apache.commons.math.exception.NonMonotonicSequenceException if + * @throws org.apache.commons.math3.exception.NonMonotonicSequenceException if * the {@code knots} array is not strictly increasing. * */ Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/polynomials/PolynomialsUtils.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/polynomials/PolynomialsUtils.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/polynomials/PolynomialsUtils.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/polynomials/PolynomialsUtils.java Tue Feb 14 16:17:55 2012 @@ -14,16 +14,16 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.polynomials; +package org.apache.commons.math3.analysis.polynomials; import java.util.ArrayList; import java.util.HashMap; import java.util.List; import java.util.Map; -import org.apache.commons.math.fraction.BigFraction; -import org.apache.commons.math.util.ArithmeticUtils; -import org.apache.commons.math.util.FastMath; +import org.apache.commons.math3.fraction.BigFraction; +import org.apache.commons.math3.util.ArithmeticUtils; +import org.apache.commons.math3.util.FastMath; /** * A collection of static methods that operate on or return polynomials. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/polynomials/package-info.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/polynomials/package-info.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/polynomials/package-info.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/polynomials/package-info.java Tue Feb 14 16:17:55 2012 @@ -20,4 +20,4 @@ * univariate real functions. * */ -package org.apache.commons.math.analysis.polynomials; +package org.apache.commons.math3.analysis.polynomials; Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/AbstractDifferentiableUnivariateSolver.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/AbstractDifferentiableUnivariateSolver.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/AbstractDifferentiableUnivariateSolver.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/AbstractDifferentiableUnivariateSolver.java Tue Feb 14 16:17:55 2012 @@ -15,10 +15,10 @@ * limitations under the License. */ -package org.apache.commons.math.analysis.solvers; +package org.apache.commons.math3.analysis.solvers; -import org.apache.commons.math.analysis.DifferentiableUnivariateFunction; -import org.apache.commons.math.analysis.UnivariateFunction; +import org.apache.commons.math3.analysis.DifferentiableUnivariateFunction; +import org.apache.commons.math3.analysis.UnivariateFunction; /** * Provide a default implementation for several functions useful to generic @@ -60,7 +60,7 @@ public abstract class AbstractDifferenti * * @param point Point at which the objective function must be evaluated. * @return the objective function value at specified point. - * @throws org.apache.commons.math.exception.TooManyEvaluationsException + * @throws org.apache.commons.math3.exception.TooManyEvaluationsException * if the maximal number of evaluations is exceeded. */ protected double computeDerivativeObjectiveValue(double point) { Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/AbstractPolynomialSolver.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/AbstractPolynomialSolver.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/AbstractPolynomialSolver.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/AbstractPolynomialSolver.java Tue Feb 14 16:17:55 2012 @@ -15,9 +15,9 @@ * limitations under the License. */ -package org.apache.commons.math.analysis.solvers; +package org.apache.commons.math3.analysis.solvers; -import org.apache.commons.math.analysis.polynomials.PolynomialFunction; +import org.apache.commons.math3.analysis.polynomials.PolynomialFunction; /** * Base class for solvers. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/AbstractUnivariateSolver.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/AbstractUnivariateSolver.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/AbstractUnivariateSolver.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/AbstractUnivariateSolver.java Tue Feb 14 16:17:55 2012 @@ -15,9 +15,9 @@ * limitations under the License. */ -package org.apache.commons.math.analysis.solvers; +package org.apache.commons.math3.analysis.solvers; -import org.apache.commons.math.analysis.UnivariateFunction; +import org.apache.commons.math3.analysis.UnivariateFunction; /** * Base class for solvers. Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/AllowedSolution.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/AllowedSolution.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/AllowedSolution.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/AllowedSolution.java Tue Feb 14 16:17:55 2012 @@ -15,7 +15,7 @@ * limitations under the License. */ -package org.apache.commons.math.analysis.solvers; +package org.apache.commons.math3.analysis.solvers; /** The kinds of solutions that a {@link BracketedUnivariateSolver @@ -29,8 +29,8 @@ package org.apache.commons.math.analysis * or slightly larger than the actual root. Root-finding algorithms generally * only guarantee that the returned solution is within the requested * tolerances. In certain cases however, in particular for - * {@link org.apache.commons.math.ode.events.EventHandler state events} of - * {@link org.apache.commons.math.ode.ODEIntegrator ODE solvers}, it + * {@link org.apache.commons.math3.ode.events.EventHandler state events} of + * {@link org.apache.commons.math3.ode.ODEIntegrator ODE solvers}, it * may be necessary to guarantee that a solution is returned that lies on a * specific side the solution.

    * Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/BaseAbstractUnivariateSolver.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/BaseAbstractUnivariateSolver.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/BaseAbstractUnivariateSolver.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/BaseAbstractUnivariateSolver.java Tue Feb 14 16:17:55 2012 @@ -15,14 +15,14 @@ * limitations under the License. */ -package org.apache.commons.math.analysis.solvers; +package org.apache.commons.math3.analysis.solvers; -import org.apache.commons.math.analysis.UnivariateFunction; -import org.apache.commons.math.exception.MaxCountExceededException; -import org.apache.commons.math.exception.NoBracketingException; -import org.apache.commons.math.exception.TooManyEvaluationsException; -import org.apache.commons.math.util.Incrementor; -import org.apache.commons.math.util.MathUtils; +import org.apache.commons.math3.analysis.UnivariateFunction; +import org.apache.commons.math3.exception.MaxCountExceededException; +import org.apache.commons.math3.exception.NoBracketingException; +import org.apache.commons.math3.exception.TooManyEvaluationsException; +import org.apache.commons.math3.util.Incrementor; +import org.apache.commons.math3.util.MathUtils; /** * Provide a default implementation for several functions useful to generic @@ -245,7 +245,7 @@ public abstract class BaseAbstractUnivar * * @param lower Lower endpoint. * @param upper Upper endpoint. - * @throws org.apache.commons.math.exception.NumberIsTooLargeException + * @throws org.apache.commons.math3.exception.NumberIsTooLargeException * if {@code lower >= upper}. */ protected void verifyInterval(final double lower, @@ -259,7 +259,7 @@ public abstract class BaseAbstractUnivar * @param lower Lower endpoint. * @param initial Initial value. * @param upper Upper endpoint. - * @throws org.apache.commons.math.exception.NumberIsTooLargeException + * @throws org.apache.commons.math3.exception.NumberIsTooLargeException * if {@code lower >= initial} or {@code initial >= upper}. */ protected void verifySequence(final double lower, @@ -274,7 +274,7 @@ public abstract class BaseAbstractUnivar * * @param lower Lower endpoint. * @param upper Upper endpoint. - * @throws org.apache.commons.math.exception.NoBracketingException if + * @throws org.apache.commons.math3.exception.NoBracketingException if * the function has the same sign at the endpoints. */ protected void verifyBracketing(final double lower, Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/BaseSecantSolver.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/BaseSecantSolver.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/BaseSecantSolver.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/BaseSecantSolver.java Tue Feb 14 16:17:55 2012 @@ -15,12 +15,12 @@ * limitations under the License. */ -package org.apache.commons.math.analysis.solvers; +package org.apache.commons.math3.analysis.solvers; -import org.apache.commons.math.util.FastMath; -import org.apache.commons.math.analysis.UnivariateFunction; -import org.apache.commons.math.exception.ConvergenceException; -import org.apache.commons.math.exception.MathInternalError; +import org.apache.commons.math3.util.FastMath; +import org.apache.commons.math3.analysis.UnivariateFunction; +import org.apache.commons.math3.exception.ConvergenceException; +import org.apache.commons.math3.exception.MathInternalError; /** * Base class for all bracketing Secant-based methods for root-finding Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/BaseUnivariateSolver.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/BaseUnivariateSolver.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/BaseUnivariateSolver.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/BaseUnivariateSolver.java Tue Feb 14 16:17:55 2012 @@ -14,9 +14,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.solvers; +package org.apache.commons.math3.analysis.solvers; -import org.apache.commons.math.analysis.UnivariateFunction; +import org.apache.commons.math3.analysis.UnivariateFunction; /** @@ -97,9 +97,9 @@ public interface BaseUnivariateSolver Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/BracketedUnivariateSolver.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/BracketedUnivariateSolver.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/BracketedUnivariateSolver.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/BracketedUnivariateSolver.java Tue Feb 14 16:17:55 2012 @@ -15,9 +15,9 @@ * limitations under the License. */ -package org.apache.commons.math.analysis.solvers; +package org.apache.commons.math3.analysis.solvers; -import org.apache.commons.math.analysis.UnivariateFunction; +import org.apache.commons.math3.analysis.UnivariateFunction; /** Interface for {@link UnivariateSolver (univariate real) root-finding * algorithms} that maintain a bracketed solution. There are several advantages @@ -60,9 +60,9 @@ public interface BracketedUnivariateSolv * @param allowedSolution The kind of solutions that the root-finding algorithm may * accept as solutions. * @return A value where the function is zero. - * @throws org.apache.commons.math.exception.MathIllegalArgumentException + * @throws org.apache.commons.math3.exception.MathIllegalArgumentException * if the arguments do not satisfy the requirements specified by the solver. - * @throws org.apache.commons.math.exception.TooManyEvaluationsException if + * @throws org.apache.commons.math3.exception.TooManyEvaluationsException if * the allowed number of evaluations is exceeded. */ double solve(int maxEval, FUNC f, double min, double max, @@ -82,9 +82,9 @@ public interface BracketedUnivariateSolv * @param allowedSolution The kind of solutions that the root-finding algorithm may * accept as solutions. * @return A value where the function is zero. - * @throws org.apache.commons.math.exception.MathIllegalArgumentException + * @throws org.apache.commons.math3.exception.MathIllegalArgumentException * if the arguments do not satisfy the requirements specified by the solver. - * @throws org.apache.commons.math.exception.TooManyEvaluationsException if + * @throws org.apache.commons.math3.exception.TooManyEvaluationsException if * the allowed number of evaluations is exceeded. */ double solve(int maxEval, FUNC f, double min, double max, double startValue, Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/BracketingNthOrderBrentSolver.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/BracketingNthOrderBrentSolver.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/BracketingNthOrderBrentSolver.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/BracketingNthOrderBrentSolver.java Tue Feb 14 16:17:55 2012 @@ -14,15 +14,15 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.solvers; +package org.apache.commons.math3.analysis.solvers; -import org.apache.commons.math.analysis.UnivariateFunction; -import org.apache.commons.math.exception.MathInternalError; -import org.apache.commons.math.exception.NoBracketingException; -import org.apache.commons.math.exception.NumberIsTooSmallException; -import org.apache.commons.math.util.FastMath; -import org.apache.commons.math.util.Precision; +import org.apache.commons.math3.analysis.UnivariateFunction; +import org.apache.commons.math3.exception.MathInternalError; +import org.apache.commons.math3.exception.NoBracketingException; +import org.apache.commons.math3.exception.NumberIsTooSmallException; +import org.apache.commons.math3.util.FastMath; +import org.apache.commons.math3.util.Precision; /** * This class implements a modification of the
    Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/DifferentiableUnivariateSolver.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/DifferentiableUnivariateSolver.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/DifferentiableUnivariateSolver.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/DifferentiableUnivariateSolver.java Tue Feb 14 16:17:55 2012 @@ -14,9 +14,9 @@ * See the License for the specific language governing permissions and * limitations under the License. */ -package org.apache.commons.math.analysis.solvers; +package org.apache.commons.math3.analysis.solvers; -import org.apache.commons.math.analysis.DifferentiableUnivariateFunction; +import org.apache.commons.math3.analysis.DifferentiableUnivariateFunction; /** Modified: commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/IllinoisSolver.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/IllinoisSolver.java?rev=1244107&r1=1243975&r2=1244107&view=diff ============================================================================== --- commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/IllinoisSolver.java (original) +++ commons/proper/math/trunk/src/main/java/org/apache/commons/math3/analysis/solvers/IllinoisSolver.java Tue Feb 14 16:17:55 2012 @@ -15,7 +15,7 @@ * limitations under the License. */ -package org.apache.commons.math.analysis.solvers; +package org.apache.commons.math3.analysis.solvers; /**