Skip to content

Commit 774ecab

Browse files
re-sync whitespace
1 parent 749d67d commit 774ecab

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/fsort.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,12 +18,12 @@ static void dinsert(double *x, const int n) { // TODO: if and when twiddled, d
1818

1919
static uint64_t minULL;
2020

21-
static void dradix_r( // single-threaded recursive worker
21+
static void dradix_r( // single-threaded recursive worker
2222
double * restrict in, // n doubles to be sorted
2323
double * restrict working, // working memory to put the sorted items before copying over *in; must not overlap *in
24-
uint64_t n, // number of items to sort. *in and *working must be at least n long
25-
int fromBit, // After twiddle to ordered ull, the bits [fromBit,toBit] are used to count
26-
int toBit, // fromBit<toBit; bit 0 is the least significant; fromBit is right shift amount too
24+
uint64_t n, // number of items to sort. *in and *working must be at least n long
25+
int fromBit, // After twiddle to ordered ull, the bits [fromBit,toBit] are used to count
26+
int toBit, // fromBit<toBit; bit 0 is the least significant; fromBit is right shift amount too
2727
uint64_t * restrict counts // already zero'd counts vector, 2^(toBit-fromBit+1) long. A stack of these is reused.
2828
) {
2929
uint64_t width = 1ULL<<(toBit-fromBit+1);

0 commit comments

Comments
 (0)