Javadoc: warning about private methods being accessed through reflection in

unit tests.


git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1416796 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Sebastien Brisard 2012-12-04 06:41:57 +00:00
parent e1c509e156
commit 95fc482c33
1 changed files with 8 additions and 3 deletions

View File

@ -257,7 +257,8 @@ public class Beta {
/**
* Returns the value of log Γ(a + b) for 1 a, b 2. Based on the
* <em>NSWC Library of Mathematics Subroutines</em> double precision
* implementation, {@code DGSMLN}.
* implementation, {@code DGSMLN}. In {@link BetaTest#testLogGammaSum()},
* this private method is accessed through reflection.
*
* @param a First argument.
* @param b Second argument.
@ -288,7 +289,9 @@ public class Beta {
/**
* Returns the value of log[Γ(b) / Γ(a + b)] for a 0 and b 10. Based on
* the <em>NSWC Library of Mathematics Subroutines</em> double precision
* implementation, {@code DLGDIV}.
* implementation, {@code DLGDIV}. In
* {@link BetaTest#testLogGammaMinusLogGammaSum()}, this private method is
* accessed through reflection.
*
* @param a First argument.
* @param b Second argument.
@ -373,7 +376,9 @@ public class Beta {
/**
* Returns the value of Δ(p) + Δ(q) - Δ(p + q), with p, q 10. Based on
* the <em>NSWC Library of Mathematics Subroutines</em> double precision
* implementation, {@code DBCORR}.
* implementation, {@code DBCORR}. In
* {@link BetaTest#testSumDeltaMinusDeltaSum()}, this private method is
* accessed through reflection.
*
* @param p First argument.
* @param q Second argument.