Skip to content
Merged
Changes from 1 commit
Commits
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
Prev Previous commit
Next Next commit
refactor: remove C section markers from CDF main.c
Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
  • Loading branch information
Planeshifter and claude committed Aug 29, 2026
commit 480730b09d018531ca5ea76664b3a33d23fa5f7a
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,6 @@
#include "stdlib/math/base/special/exp.h"
#include <stdint.h>

// VARIABLES //

static const double WEIGHT[ 20 ] = {
0.0176140071391521,
0.0406014298003869,
Expand Down Expand Up @@ -96,8 +94,6 @@ static const double q6 = 1.755667163182642e0;
static const double q7 = 0.8838834764831844e-1;
static const double PRECISION = 1e-10;

// FUNCTIONS //

/**
* Evaluates the CDF of the standard normal distribution.
*
Expand Down Expand Up @@ -300,8 +296,6 @@ static double gausslegdquad( const double q, const double aii, const double r, c
return cmm * wsum;
}

// MAIN //

/**
* Evaluates the cumulative distribution function (CDF) of the studentized range distribution.
*
Expand Down
Loading