Removed unneeded "import" statements.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1421260 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gilles Sadowski 2012-12-13 12:41:54 +00:00
parent f25ba664ed
commit 931e594d11
3 changed files with 0 additions and 6 deletions

View File

@ -20,7 +20,6 @@ import org.apache.commons.math3.exception.MathIllegalStateException;
import org.apache.commons.math3.exception.NotStrictlyPositiveException;
import org.apache.commons.math3.exception.NullArgumentException;
import org.apache.commons.math3.random.RandomVectorGenerator;
import org.apache.commons.math3.optim.InitialGuess;
/**
* Base class multi-start optimizer for a multivariate function.

View File

@ -16,10 +16,6 @@
*/
package org.apache.commons.math3.optim;
import org.apache.commons.math3.optim.OptimizationData;
import org.apache.commons.math3.optim.InitialGuess;
import org.apache.commons.math3.optim.SimpleBounds;
import org.apache.commons.math3.optim.ConvergenceChecker;
import org.apache.commons.math3.exception.DimensionMismatchException;
import org.apache.commons.math3.exception.NumberIsTooSmallException;
import org.apache.commons.math3.exception.NumberIsTooLargeException;

View File

@ -18,7 +18,6 @@
package org.apache.commons.math3.optim.nonlinear.scalar.noderiv;
import java.util.Arrays;
import org.apache.commons.math3.analysis.MultivariateFunction;
import org.apache.commons.math3.exception.MathIllegalStateException;
import org.apache.commons.math3.exception.NumberIsTooSmallException;
import org.apache.commons.math3.exception.OutOfRangeException;