Javadoc.
git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1374065 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
b1741d1b46
commit
02123844e8
|
@ -62,6 +62,8 @@ public class LegendreHighPrecisionRuleFactory extends BaseRuleFactory<BigDecimal
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
|
*
|
||||||
|
* @throws NotStrictlyPositiveException if {@code numberOfPoints < 1}.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
protected Pair<BigDecimal[], BigDecimal[]> computeRule(int numberOfPoints) {
|
protected Pair<BigDecimal[], BigDecimal[]> computeRule(int numberOfPoints) {
|
||||||
|
|
|
@ -34,6 +34,8 @@ import org.apache.commons.math3.exception.util.LocalizedFormats;
|
||||||
public class LegendreRuleFactory extends BaseRuleFactory<Double> {
|
public class LegendreRuleFactory extends BaseRuleFactory<Double> {
|
||||||
/**
|
/**
|
||||||
* {@inheritDoc}
|
* {@inheritDoc}
|
||||||
|
*
|
||||||
|
* @throws NotStrictlyPositiveException if {@code numberOfPoints < 1}.
|
||||||
*/
|
*/
|
||||||
@Override
|
@Override
|
||||||
protected Pair<Double[], Double[]> computeRule(int numberOfPoints) {
|
protected Pair<Double[], Double[]> computeRule(int numberOfPoints) {
|
||||||
|
|
Loading…
Reference in New Issue