-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathmain.cpp
More file actions
31 lines (26 loc) · 689 Bytes
/
Copy pathmain.cpp
File metadata and controls
31 lines (26 loc) · 689 Bytes
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 <climits>
#include <cstring>
#include "project_jj_lib/Utils.h"
#include "project_jj_lib_part2/Utils_part2.h"
#include "project_jj_lib_part2/MACROS.h"
#include <iostream>
#include "project_jj_lib_part2/Utils_part2.h"
#include "project_jj_lib_part3/JobScheduler.h"
//using namespace std;
//
int main(int argc, char **argv)
{
clock_t start,end;
start = clock();
if (argc < 2) {
std::cout << "give #threads\n";
exit(1);
}
job_scheduler.init(atoi(argv[1]));
Get_Input();
Set_output();
end = clock();
std::cout << "Total user time: " << ((double) end-start)/CLOCKS_PER_SEC << "s" << std::endl;
return 0;
}