-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathDriver.cpp
83 lines (69 loc) · 1.36 KB
/
Driver.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
/*
*
*
*
* Name: Driver.cpp
* Author: Thiago Pereira
*
*/
#include "StandardIncludes.h"
#include <math.h>
#define MAX_PRIME 10000000
typedef boost::mutex::scoped_lock scoped_lock;
void setPrimeArrayToZero(int* primeArray);
void sieveOfEratosthenes(int* array);
void printPrimes(int* array);
void startApplication();
mutex mutex;
thread_group threads;
int counter = 0;
int primeArray[MAX_PRIME];
int main()
{
int* primeArray = new int[MAX_PRIME];
timer time;
time.restart();
setPrimeArrayToZero(primeArray);
sieveOfEratosthenes(primeArray);
cout << "Time consumed: " << time.elapsed() << endl;
//printPrimes(primeArray);
return 0;
}
void startApplication()
{
scoped_lock lock(mutex);
threads.create_thread(bind(&sieveOfEratosthenes, primeArray));
condition.notify_all();
threads.join_all();
}
void setPrimeArrayToZero(int* primeArray)
{
for (unsigned int indexArray = 1; indexArray < MAX_PRIME; ++indexArray)
{
primeArray[indexArray] = 0;
}
}
void sieveOfEratosthenes(int* array)
{
int n, m;
for (n = 2; n < sqrt(MAX_PRIME); ++n)
{
for (m = 2; m < sqrt(MAX_PRIME); ++m)
{
array[n * m] = 1;
}
}
}
void printPrimes(int* array)
{
int count = 0;
cout << "Prime numbers" << endl;
for (unsigned int indexArray = 1; indexArray < MAX_PRIME; ++indexArray)
{
if (array[indexArray] != 1)
{
cout << indexArray << endl;
count++;
}
}
}