Skip to content

Commit 302708b

Browse files
authored
style: fix indentation
1 parent 87d4f31 commit 302708b

File tree

1 file changed

+4
-4
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/frechet/variance/src

1 file changed

+4
-4
lines changed

lib/node_modules/@stdlib/stats/base/dists/frechet/variance/src/main.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -35,7 +35,7 @@
3535
*/
3636
double stdlib_base_dists_frechet_variance( const double alpha, const double s, const double m ) {
3737
double g1;
38-
double g2;
38+
double g2;
3939
if (
4040
stdlib_base_is_nan( alpha ) ||
4141
stdlib_base_is_nan( s ) ||
@@ -46,9 +46,9 @@ double stdlib_base_dists_frechet_variance( const double alpha, const double s, c
4646
return 0.0/0.0; // NaN
4747
}
4848
if ( alpha <= 2.0 ) {
49-
return STDLIB_CONSTANT_FLOAT64_PINF;
50-
}
49+
return STDLIB_CONSTANT_FLOAT64_PINF;
50+
}
5151
g1 = stdlib_base_gamma( 1.0 - (1.0/alpha) );
52-
g2 = stdlib_base_gamma( 1.0 - (2.0/alpha) );
52+
g2 = stdlib_base_gamma( 1.0 - (2.0/alpha) );
5353
return (s * s) * (g2 - (g1 * g1));
5454
}

0 commit comments

Comments
 (0)