forked from cmuparlay/parlaylib
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcycle_count.cpp
31 lines (26 loc) · 828 Bytes
/
cycle_count.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#include <iostream>
#include <string>
#include <parlay/primitives.h>
#include <parlay/random.h>
#include <parlay/internal/get_time.h>
#include "cycle_count.h"
// **************************************************************
// Driver
// **************************************************************
int main(int argc, char* argv[]) {
auto usage = "cycle_count <n>";
if (argc != 2) std::cout << usage << std::endl;
else {
long n;
try { n = std::stol(argv[1]); }
catch (...) { std::cout << usage << std::endl; return 1; }
auto permutation = parlay::random_permutation(n);
parlay::internal::timer t("Time");
long count;
for (int i=0; i < 3; i++) {
count = cycle_count(permutation);
t.next("Cycle Count");
}
std::cout << "number of cycles: " << count << std::endl;
}
}