[MATH-825] Method LaguerreSolver#laguerre(...) has been made private.
This commit is contained in:
parent
d0721feadc
commit
5f47ad718e
|
@ -54,6 +54,9 @@ If the output is not quite correct, check for invisible trailing spaces!
|
||||||
</release>
|
</release>
|
||||||
|
|
||||||
<release version="4.0" date="XXXX-XX-XX" description="">
|
<release version="4.0" date="XXXX-XX-XX" description="">
|
||||||
|
<action dev="tn" type="update" issue="MATH-825" due-to="Gilles Sadowski">
|
||||||
|
Method "LaguerreSolver#laguerre(...)" has been made private.
|
||||||
|
</action>
|
||||||
<action dev="tn" type="update" issue="MATH-760" due-to="sebb">
|
<action dev="tn" type="update" issue="MATH-760" due-to="sebb">
|
||||||
Field "windowSize" in "DescriptiveStatistics" has been made private.
|
Field "windowSize" in "DescriptiveStatistics" has been made private.
|
||||||
</action>
|
</action>
|
||||||
|
|
|
@ -150,8 +150,7 @@ public class LaguerreSolver extends AbstractPolynomialSolver {
|
||||||
* @deprecated This method should not be part of the public API: It will
|
* @deprecated This method should not be part of the public API: It will
|
||||||
* be made private in version 4.0.
|
* be made private in version 4.0.
|
||||||
*/
|
*/
|
||||||
@Deprecated
|
private double laguerre(double lo, double hi,
|
||||||
public double laguerre(double lo, double hi,
|
|
||||||
double fLo, double fHi) {
|
double fLo, double fHi) {
|
||||||
final Complex c[] = ComplexUtils.convertToComplex(getCoefficients());
|
final Complex c[] = ComplexUtils.convertToComplex(getCoefficients());
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue