-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmain.cpp
More file actions
25 lines (20 loc) · 745 Bytes
/
Copy pathmain.cpp
File metadata and controls
25 lines (20 loc) · 745 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
#include <assert.h>
#include "prototype/RepairPartitioningPrototype.h"
// Disable debugging (use this in production)
// #define NDEBUG 1
using namespace std;
unsigned currentFragID = 0;
unsigned currentWordID = 0;
unsigned currentOffset = 0;
int main(int argc, char* argv[])
{
// cerr << "Association: " << sizeof(Association) << endl;
// cerr << "HeapEntry: " << sizeof(HeapEntry) << endl;
// cerr << "HashTableEntry: " << sizeof(HashTableEntry) << endl;
// cerr << "unsigned: " << sizeof(unsigned) << endl;
// cerr << "unsigned long: " << sizeof(unsigned long) << endl;
// cerr << "unsigned long long: " << sizeof(unsigned long long) << endl;
// exit(0);
RepairPartitioningPrototype prototype;
return prototype.run(argc, argv);
}