summaryrefslogtreecommitdiffhomepage
path: root/examples/queue.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/queue.c')
-rw-r--r--examples/queue.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/queue.c b/examples/queue.c
index d1eae6bc..bf287e7c 100644
--- a/examples/queue.c
+++ b/examples/queue.c
@@ -13,20 +13,20 @@ using_cqueue(i, cdeq_i);
int main() {
int n = 100000000;
- crand_uniform_t dist;
- crand_t rng = crand_init(1234);
- dist = crand_uniform_init(0, n);
+ stc64_uniform_t dist;
+ stc64_t rng = stc64_init(1234);
+ dist = stc64_uniform_init(0, n);
cqueue_i queue = cqueue_i_init();
// Push ten million random numbers onto the queue.
c_forrange (n)
- cqueue_i_push(&queue, crand_uniform(&rng, &dist));
+ cqueue_i_push(&queue, stc64_uniform(&rng, &dist));
// Push or pop on the queue ten million times
printf("%d\n", n);
c_forrange (n) { // range uses initial n only.
- int r = crand_uniform(&rng, &dist);
+ int r = stc64_uniform(&rng, &dist);
if (r & 1)
++n, cqueue_i_push(&queue, r);
else