Skip to content

Commit d10fd51

Browse files
authored
style: fix indentation issues
Signed-off-by: Philipp Burckhardt <[email protected]>
1 parent ae2577e commit d10fd51

File tree

2 files changed

+3
-3
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/negative-binomial/mode

2 files changed

+3
-3
lines changed

lib/node_modules/@stdlib/stats/base/dists/negative-binomial/mode/benchmark/c/benchmark.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -93,15 +93,15 @@ static double random_uniform( const double min, const double max ) {
9393
*/
9494
static double benchmark( void ) {
9595
double elapsed;
96-
double r[ 100 ];
96+
double r[ 100 ];
9797
double p[ 100 ];
9898
double y;
9999
double t;
100100
int i;
101101

102102
for ( i = 0; i < 100; i++ ) {
103103
r[ i ] = random_uniform( 1, 100 );
104-
p[ i ] = random_uniform( 0.1, 1.0 );
104+
p[ i ] = random_uniform( 0.1, 1.0 );
105105
}
106106

107107
t = tic();

lib/node_modules/@stdlib/stats/base/dists/negative-binomial/mode/examples/c/example.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ int main( void ) {
3232
int i;
3333

3434
for ( i = 0; i < 10; i++ ) {
35-
r = random_uniform( 1.0, 100.0 );
35+
r = random_uniform( 1.0, 100.0 );
3636
p = random_uniform( 0.01, 0.99 );
3737
y = stdlib_base_dists_negative_binomial_mode( r, p );
3838
printf( "r: %f, p: %.4f, mode(X;r,p): %.4f\n", r, p, y );

0 commit comments

Comments
 (0)