зеркало из https://github.com/dotnet/infer.git
Tests uses nameof in more places.
This commit is contained in:
Родитель
f1ae8efdfd
Коммит
0430e1113d
|
@ -1722,7 +1722,7 @@ exp(x*x/4)*pcfu(0.5+n,-x)
|
||||||
public static int NormalCdfMomentRatioConFracCount(int n, double x)
|
public static int NormalCdfMomentRatioConFracCount(int n, double x)
|
||||||
{
|
{
|
||||||
if (x >= 0)
|
if (x >= 0)
|
||||||
throw new ArgumentException("x >= 0", "x");
|
throw new ArgumentException("x >= 0", nameof(x));
|
||||||
double invX = 1 / x;
|
double invX = 1 / x;
|
||||||
double invX2 = invX * invX;
|
double invX2 = invX * invX;
|
||||||
double numer = -invX;
|
double numer = -invX;
|
||||||
|
|
Загрузка…
Ссылка в новой задаче