mirror of
https://github.com/ceph/ceph
synced 2025-01-11 13:41:02 +00:00
9213a23f14
git-svn-id: https://ceph.svn.sf.net/svnroot/ceph@1138 29311d96-e01e-0410-9327-a35deaab8ce9
26 lines
317 B
C++
26 lines
317 B
C++
|
|
#include "../../common/Clock.h"
|
|
#include "../crush.h"
|
|
using namespace crush;
|
|
|
|
|
|
Clock g_clock;
|
|
|
|
#include <math.h>
|
|
|
|
#include <iostream>
|
|
#include <vector>
|
|
using namespace std;
|
|
|
|
|
|
int branching = 10;
|
|
bool linear = false;
|
|
int numrep = 1;
|
|
|
|
int main() {
|
|
|
|
Bucket *b = new UniformBucket(1, 0);
|
|
//b = new TreeBucket(1);
|
|
}
|
|
|