Skip to content

Commit

Permalink
style: fix indentation
Browse files Browse the repository at this point in the history
---
type: pre_commit_static_analysis_report
description: Results of running static analysis checks when committing changes.
report:
  - task: lint_filenames
    status: passed
  - task: lint_editorconfig
    status: passed
  - task: lint_markdown
    status: na
  - task: lint_package_json
    status: na
  - task: lint_repl_help
    status: na
  - task: lint_javascript_src
    status: na
  - task: lint_javascript_cli
    status: na
  - task: lint_javascript_examples
    status: na
  - task: lint_javascript_tests
    status: na
  - task: lint_javascript_benchmarks
    status: na
  - task: lint_python
    status: na
  - task: lint_r
    status: na
  - task: lint_c_src
    status: passed
  - task: lint_c_examples
    status: passed
  - task: lint_c_benchmarks
    status: passed
  - task: lint_c_tests_fixtures
    status: na
  - task: lint_shell
    status: na
  - task: lint_typescript_declarations
    status: na
  - task: lint_typescript_tests
    status: na
  - task: lint_license_headers
    status: passed
---
  • Loading branch information
Planeshifter committed Jan 2, 2025
1 parent 7c20166 commit 095586c
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/stats/base/dcumax/src/addon.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ static napi_value addon_method( napi_env env, napi_callback_info info ) {
STDLIB_NAPI_ARGV( env, info, argv, argc, 7 );
STDLIB_NAPI_ARGV_INT64( env, N, argv, 0 );
STDLIB_NAPI_ARGV_INT64( env, strideX, argv, 2 );
STDLIB_NAPI_ARGV_INT64( env, strideY, argv, 5 );
STDLIB_NAPI_ARGV_INT64( env, strideY, argv, 5 );
STDLIB_NAPI_ARGV_INT64( env, offsetX, argv, 3 );
STDLIB_NAPI_ARGV_INT64( env, offsetY, argv, 6 );
STDLIB_NAPI_ARGV_INT64( env, offsetY, argv, 6 );
STDLIB_NAPI_ARGV_STRIDED_FLOAT64ARRAY( env, X, N, strideX, argv, 1 );
STDLIB_NAPI_ARGV_STRIDED_FLOAT64ARRAY( env, Y, N, strideY, argv, 4 );
stdlib_strided_dcumax_ndarray( N, X, strideX, offsetX, Y, strideY, offsetY );
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -93,15 +93,15 @@ static double random_uniform( const double min, const double max ) {
*/
static double benchmark( void ) {
double elapsed;
double mu[ 100 ];
double mu[ 100 ];
double sigma[ 100 ];
double y;
double t;
int i;

for ( i = 0; i < 100; i++ ) {
mu[ i ] = random_uniform( -10.0, 10.0 );
sigma[ i ] = random_uniform( 0.1, 10.0 );
sigma[ i ] = random_uniform( 0.1, 10.0 );
}

t = tic();
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,9 @@ static double random_uniform( const double min, const double max ) {

int main( void ) {
double mu;
double sigma;
double y;
int i;
double sigma;
double y;
int i;

for ( i = 0; i < 10; i++ ) {
mu = random_uniform( -5.0, 5.0 );
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/stats/base/dmskrange/src/addon.c
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,9 @@ static napi_value addon_method( napi_env env, napi_callback_info info ) {
STDLIB_NAPI_ARGV( env, info, argv, argc, 7 );
STDLIB_NAPI_ARGV_INT64( env, N, argv, 0 );
STDLIB_NAPI_ARGV_INT64( env, strideX, argv, 2 );
STDLIB_NAPI_ARGV_INT64( env, strideMask, argv, 5 );
STDLIB_NAPI_ARGV_INT64( env, strideMask, argv, 5 );
STDLIB_NAPI_ARGV_INT64( env, offsetX, argv, 3 );
STDLIB_NAPI_ARGV_INT64( env, offsetMask, argv, 6 );
STDLIB_NAPI_ARGV_INT64( env, offsetMask, argv, 6 );
STDLIB_NAPI_ARGV_STRIDED_FLOAT64ARRAY( env, X, N, strideX, argv, 1 );
STDLIB_NAPI_ARGV_STRIDED_UINT8ARRAY( env, Mask, N, strideMask, argv, 4 );
STDLIB_NAPI_CREATE_DOUBLE( env, stdlib_strided_dmskrange_ndarray( N, X, strideX, offsetX, Mask, strideMask, offsetMask ), v );
Expand Down
4 changes: 2 additions & 2 deletions lib/node_modules/@stdlib/stats/base/scumax/src/addon.c
Original file line number Diff line number Diff line change
Expand Up @@ -52,9 +52,9 @@ static napi_value addon_method( napi_env env, napi_callback_info info ) {
STDLIB_NAPI_ARGV( env, info, argv, argc, 7 );
STDLIB_NAPI_ARGV_INT64( env, N, argv, 0 );
STDLIB_NAPI_ARGV_INT64( env, strideX, argv, 2 );
STDLIB_NAPI_ARGV_INT64( env, strideY, argv, 5 );
STDLIB_NAPI_ARGV_INT64( env, strideY, argv, 5 );
STDLIB_NAPI_ARGV_INT64( env, offsetX, argv, 3 );
STDLIB_NAPI_ARGV_INT64( env, offsetY, argv, 6 );
STDLIB_NAPI_ARGV_INT64( env, offsetY, argv, 6 );
STDLIB_NAPI_ARGV_STRIDED_FLOAT32ARRAY( env, X, N, strideX, argv, 1 );
STDLIB_NAPI_ARGV_STRIDED_FLOAT32ARRAY( env, Y, N, strideY, argv, 4 );
stdlib_strided_scumax_ndarray( N, X, strideX, offsetX, Y, strideY, offsetY );
Expand Down

0 comments on commit 095586c

Please sign in to comment.