summaryrefslogtreecommitdiffhomepage
path: root/examples
diff options
context:
space:
mode:
authorTyge Løvset <[email protected]>2020-12-16 13:31:13 +0100
committerTyge Løvset <[email protected]>2020-12-16 13:31:13 +0100
commit191b637299bf909d6b7b4db6e5d5e45964574a1c (patch)
tree4048c86232979ad9254813ebd6523ef22a1ba7ee /examples
parenta9498a706b53820817039caba6574f6a34ae78ff (diff)
downloadSTC-modified-191b637299bf909d6b7b4db6e5d5e45964574a1c.tar.gz
STC-modified-191b637299bf909d6b7b4db6e5d5e45964574a1c.zip
Renamed crandom to crand, including renaming of relevant files.
Diffstat (limited to 'examples')
-rw-r--r--examples/benchmark.cpp2
-rw-r--r--examples/birthday.c2
-rw-r--r--examples/ex_gaussian.c2
-rw-r--r--examples/heap.c2
-rw-r--r--examples/list.c2
-rw-r--r--examples/priority.c2
-rw-r--r--examples/queue.c2
-rw-r--r--examples/random.c2
-rw-r--r--examples/rngtest.c2
9 files changed, 9 insertions, 9 deletions
diff --git a/examples/benchmark.cpp b/examples/benchmark.cpp
index 206da5ce..e919bc3f 100644
--- a/examples/benchmark.cpp
+++ b/examples/benchmark.cpp
@@ -1,6 +1,6 @@
#include <stdio.h>
#include <time.h>
-#include <stc/crandom.h>
+#include <stc/crand.h>
#include <stc/cstr.h>
#include <stc/cmap.h>
#include "others/khash.h"
diff --git a/examples/birthday.c b/examples/birthday.c
index ac05a5f5..a13fa8c9 100644
--- a/examples/birthday.c
+++ b/examples/birthday.c
@@ -2,7 +2,7 @@
#include <stdio.h>
#include <time.h>
-#include <stc/crandom.h>
+#include <stc/crand.h>
#include <stc/cmap.h>
#include <stc/cvec.h>
diff --git a/examples/ex_gaussian.c b/examples/ex_gaussian.c
index a3842aae..0fed913f 100644
--- a/examples/ex_gaussian.c
+++ b/examples/ex_gaussian.c
@@ -1,7 +1,7 @@
#include <stdio.h>
#include <time.h>
#include <math.h>
-#include "stc/crandom.h"
+#include "stc/crand.h"
#include "stc/cstr.h"
#include "stc/cmap.h"
#include "stc/cvec.h"
diff --git a/examples/heap.c b/examples/heap.c
index 83f9d97f..b45e5ada 100644
--- a/examples/heap.c
+++ b/examples/heap.c
@@ -1,6 +1,6 @@
#include <stdio.h>
#include <time.h>
-#include <stc/crandom.h>
+#include <stc/crand.h>
#include <stc/cvec.h>
#include <stc/cpqueue.h>
diff --git a/examples/list.c b/examples/list.c
index 4f6d16e1..a838b3bd 100644
--- a/examples/list.c
+++ b/examples/list.c
@@ -1,7 +1,7 @@
#include <stdio.h>
#include <time.h>
#include <stc/clist.h>
-#include <stc/crandom.h>
+#include <stc/crand.h>
using_clist(fx, double);
int main() {
diff --git a/examples/priority.c b/examples/priority.c
index f6b4ecf0..40fb395e 100644
--- a/examples/priority.c
+++ b/examples/priority.c
@@ -4,7 +4,7 @@
#include <stc/cvec.h>
#include <stc/cpqueue.h>
#include <stc/cmap.h>
-#include <stc/crandom.h>
+#include <stc/crand.h>
using_cvec(i, int64_t);
using_cpqueue(i, cvec_i, >); // min-heap (increasing values)
diff --git a/examples/queue.c b/examples/queue.c
index 57362493..2499a9ab 100644
--- a/examples/queue.c
+++ b/examples/queue.c
@@ -1,4 +1,4 @@
-#include <stc/crandom.h>
+#include <stc/crand.h>
#include <stc/cqueue.h>
#include <stdio.h>
diff --git a/examples/random.c b/examples/random.c
index de1fe778..94a68607 100644
--- a/examples/random.c
+++ b/examples/random.c
@@ -1,7 +1,7 @@
#include <stdio.h>
#include <time.h>
#include <math.h>
-#include <stc/crandom.h>
+#include <stc/crand.h>
#include <stc/cstr.h>
int main()
diff --git a/examples/rngtest.c b/examples/rngtest.c
index db7a8093..f52099c7 100644
--- a/examples/rngtest.c
+++ b/examples/rngtest.c
@@ -1,6 +1,6 @@
#include <stdio.h>
#include <time.h>
-#include <stc/crandom.h>
+#include <stc/crand.h>
#ifdef __cplusplus
#include <random>
#endif