Skip to content

Commit c63c47a

Browse files
authored
chore: address commit comment
PR-URL: #5725 Closes: #5709 Reviewed-by: Philipp Burckhardt <pburckhardt@outlook.com>
1 parent 78ab146 commit c63c47a

File tree

1 file changed

+2
-0
lines changed
  • lib/node_modules/@stdlib/stats/base/dists/triangular/median/test/fixtures/julia

1 file changed

+2
-0
lines changed

lib/node_modules/@stdlib/stats/base/dists/triangular/median/test/fixtures/julia/runner.jl

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,9 +74,11 @@ dir = dirname( file );
7474
# Generate fixtures:
7575
a = rand( 500 ) .* 10.0;
7676
b = ( rand( 500 ) .* 10.0 ) .+ a;
77+
7778
# Case: c < (a + b) / 2
7879
c1 = a .+ ( b .- a ) .* ( 0.5 .* rand( 500 ) );
7980
gen( a, b, c1, "data1.json" );
81+
8082
# Case: c >= (a + b) / 2
8183
c2 = ( a .+ b ) ./ 2 .+ ( b .- a ) .* ( 0.5 .* rand( 500 ) );
8284
gen( a, b, c2, "data2.json" );

0 commit comments

Comments
 (0)