Skip to content
Closed
Show file tree
Hide file tree
Changes from 1 commit
Commits
Show all changes
30 commits
Select commit Hold shift + click to select a range
0e05e9e
chore: address commit comments (commit d269f48)
PraverBajaj Mar 2, 2025
fee91b7
build: don't include all test files for children of namespace packages
Planeshifter Mar 1, 2025
a539b4b
chore: update comment and disable lint directives
Planeshifter Mar 1, 2025
3d46572
build: refactor to avoid unterminated substitute pattern error
Planeshifter Mar 2, 2025
0c4f2aa
feat(stats): add C implementation for `stats/base/dists/hypergeometri…
anandkaranubc Mar 2, 2025
0ffa401
feat(stats): add C implementation for `stats/base/dists/hypergeometri…
anandkaranubc Mar 2, 2025
b17bc16
build: add workflow to validate local dev setup via commit metadata
Planeshifter Mar 2, 2025
0ead548
feat: update error databases
stdlib-bot Mar 2, 2025
476136a
docs: update migration guide to minimize merge conflicts
kgryte Mar 2, 2025
db2dbc8
docs: update related packages sections
stdlib-bot Mar 2, 2025
1e87810
docs: update REPL namespace documentation
stdlib-bot Mar 2, 2025
4c406a3
docs: update list of contributors
stdlib-bot Mar 2, 2025
b698a74
docs: update namespace table of contents
stdlib-bot Mar 2, 2025
ccfa6e5
docs: fix types
kgryte Mar 2, 2025
4f69f1a
docs: fix line wrapping
kgryte Mar 2, 2025
a8c979b
docs: fix line wrapping
kgryte Mar 2, 2025
a78aee0
docs: fix line wrapping
kgryte Mar 2, 2025
92ba696
feat: add `blas/ext/base/wasm/dapxsumpw`
aayush0325 Mar 2, 2025
4c0f799
build: generalize scripts to auto-update copyright year
kgryte Mar 2, 2025
8f53f5d
chore: address commit comment
jalajk3004 Mar 2, 2025
bd394bf
chore: address commit comment
jalajk3004 Mar 2, 2025
39a7c08
chore: address commit comments
jalajk3004 Mar 2, 2025
11fc86c
style: fix lint errors
888krishnam Mar 2, 2025
36c9244
build: also check for capital X when verifying contributing guideline…
Planeshifter Mar 2, 2025
fa8c84c
chore: address commit comments
Aksshay88 Mar 2, 2025
716033c
docs: fix C lint errors
Neerajpathak07 Mar 2, 2025
63908ec
chore: update .mailmap and list of contributors
Planeshifter Mar 3, 2025
8e9fe4c
docs: update REPL namespace documentation
stdlib-bot Mar 3, 2025
80dc756
build: use latest version of action and pin to SHA
Planeshifter Mar 3, 2025
02613d4
build: disable workflow due to failing metadata extraction
Planeshifter Mar 3, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -139,10 +139,6 @@ for ( i = 0; i < 10; i++ ) {

<!-- /.examples -->

<!-- Section to include cited references. If references are included, add a horizontal rule *before* the section. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->

<section class="references">

<!-- C interface documentation. -->

* * *
Expand Down Expand Up @@ -209,7 +205,6 @@ double stdlib_base_dists_geometric_logcdf( const double x, const double p );
#include "stdlib/stats/base/dists/geometric/logcdf.h"
#include <stdlib.h>
#include <stdio.h>
#include <math.h>

static double random_uniform( const double min, const double max ) {
double v = (double)rand() / ( (double)RAND_MAX + 1.0 );
Expand All @@ -233,8 +228,14 @@ int main( void ) {

</section>

<!-- /.c -->

<!-- /.references -->

<!-- Section to include cited references. If references are included, add a horizontal rule *before* the section. Make sure to keep an empty line after the `section` element and another before the `/section` close. -->

<section class="references">

<!-- Section for related `stdlib` packages. Do not manually edit this section, as it is automatically populated. -->

<section class="related">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@
#include "stdlib/stats/base/dists/geometric/logcdf.h"
#include <stdlib.h>
#include <stdio.h>
#include <math.h>

static double random_uniform( const double min, const double max ) {
double v = (double)rand() / ( (double)RAND_MAX + 1.0 );
Expand Down
Loading