git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1374065 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gilles Sadowski 2012-08-16 21:22:09 +00:00
parent b1741d1b46
commit 02123844e8
2 changed files with 4 additions and 0 deletions

View File

@ -62,6 +62,8 @@ public class LegendreHighPrecisionRuleFactory extends BaseRuleFactory<BigDecimal
/**
* {@inheritDoc}
*
* @throws NotStrictlyPositiveException if {@code numberOfPoints < 1}.
*/
@Override
protected Pair<BigDecimal[], BigDecimal[]> computeRule(int numberOfPoints) {

View File

@ -34,6 +34,8 @@ import org.apache.commons.math3.exception.util.LocalizedFormats;
public class LegendreRuleFactory extends BaseRuleFactory<Double> {
/**
* {@inheritDoc}
*
* @throws NotStrictlyPositiveException if {@code numberOfPoints < 1}.
*/
@Override
protected Pair<Double[], Double[]> computeRule(int numberOfPoints) {