Skip to content

Commit 1889eb3

Browse files
committed
style: fix indentation in Rayleigh MGF C implementation
1 parent e90c31f commit 1889eb3

File tree

1 file changed

+1
-1
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/rayleigh/mgf/src

1 file changed

+1
-1
lines changed

lib/node_modules/@stdlib/stats/base/dists/rayleigh/mgf/src/main.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,6 @@ double stdlib_base_dists_rayleigh_mgf( const double t, const double sigma ) {
4949
}
5050
sigmat = t * sigma;
5151
out = 1.0 + (sigmat * stdlib_base_exp( sigmat*sigmat / 2.0 ));
52-
out *= STDLIB_CONSTANT_FLOAT64_SQRT_HALF_PI * ( stdlib_base_erf( sigmat / STDLIB_CONSTANT_FLOAT64_SQRT2 ) + 1.0 );
52+
out *= STDLIB_CONSTANT_FLOAT64_SQRT_HALF_PI * ( stdlib_base_erf( sigmat / STDLIB_CONSTANT_FLOAT64_SQRT2 ) + 1.0 );
5353
return out;
5454
}

0 commit comments

Comments
 (0)