Skip to content
Snippets Groups Projects
Commit 9f7da3eb authored by Niels Möller's avatar Niels Möller
Browse files

Introduced OUTPUT macro.

Rev: nettle/examples/eratosthenes.c:1.6
parent 2138baab
No related branches found
No related tags found
No related merge requests found
......@@ -176,6 +176,10 @@ vector_find_next (const unsigned long *vector, unsigned long bit, unsigned long
return i * BITS_PER_LONG + find_first_one(word);
}
/* For benchmarking, define to do nothing (otherwise, most of the time
will be spent converting the output to decimal). */
#define OUTPUT(n) printf("%lu\n", (n))
int
main (int argc, char **argv)
{
......@@ -242,7 +246,7 @@ main (int argc, char **argv)
return EXIT_FAILURE;
}
printf("2\n");
OUTPUT(2UL);
bit = 0;
......@@ -255,7 +259,7 @@ main (int argc, char **argv)
{
unsigned long n = 3 + 2 * bit;
printf("%lu\n", n);
OUTPUT(n);
/* First bit to clear corresponds to n^2, which is bit
......@@ -270,7 +274,7 @@ main (int argc, char **argv)
for (; bit < block_size ;
bit = vector_find_next (vector, bit + 1, size))
printf("%lu\n", 3 + 2 * bit);
OUTPUT(3 + 2 * bit);
for (block = block_size; block < size; block += block_size)
{
......@@ -302,7 +306,7 @@ main (int argc, char **argv)
for (bit = vector_find_next (vector, block, block + block_size);
bit < block + block_size;
bit = vector_find_next (vector, bit + 1, block + block_size))
printf("%lu\n", 3 + 2 * bit);
OUTPUT(3 + 2 * bit);
}
return EXIT_SUCCESS;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment