MATH-1295

Increased default value for number of allowed evaluations.
This commit is contained in:
Gilles 2015-12-02 13:51:10 +01:00
parent c4f8493358
commit 34646ec9b5
2 changed files with 6 additions and 2 deletions

View File

@ -54,6 +54,10 @@ If the output is not quite correct, check for invisible trailing spaces!
</release>
<release version="4.0" date="XXXX-XX-XX" description="">
<action dev="erans" type="fix" issue="MATH-1295" due-to="Luke Lindsay">
Increased default value for number of allowed evaluations in
"o.a.c.m.optim.univariate.BracketFinder".
</action>
<action dev="tn" type="fix" issue="MATH-1294" due-to="Kamil Włodarczyk"> <!-- backported to 3.6 -->
Fixed potential race condition in PolynomialUtils#buildPolynomial in
case polynomials are generated from multiple threads. Furthermore, the

View File

@ -76,11 +76,11 @@ public class BracketFinder {
private double fMid;
/**
* Constructor with default values {@code 100, 50} (see the
* Constructor with default values {@code 100, 500} (see the
* {@link #BracketFinder(double,int) other constructor}).
*/
public BracketFinder() {
this(100, 50);
this(100, 500);
}
/**