-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathBarnsHutTree.hpp
516 lines (443 loc) · 13.5 KB
/
BarnsHutTree.hpp
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
#pragma once
#include <functional>
#include <iostream>
#include <cmath>
#include <limits>
namespace
{
template <class type, class... Args>
type* Allocate(Args... args)
{
type* p = new (std::nothrow) type(args...);
if(p==nullptr)
{
std::cout << "dont't have enough merty";
std::exit(-1);
}
return p;
}
template <class type>
type* Allocate_Array(unsigned int n)
{
type* p = new (std::nothrow) type[n];
if(p==nullptr)
{
std::cout << "dont't have enough memty";
std::exit(-1);
}
return p;
}
int ncell = 0;
enum class Type : unsigned char
{
Body = 0,
Cell,
};
struct Node
{
Type type;
bool update;
double* position;
Node* next;
};
struct Body:public Node
{
unsigned int id;
};
}
template <class posType, class AdditionalCellInfo>
class BarnesHutTree
{
public:
struct Cell:public Node
{
bool flag = false;
Node* more = nullptr;
Node** subP;
AdditionalCellInfo info;
Cell()
{
}
Cell(unsigned char DIM):flag(true)
{
subP = new Node*[1<<DIM];
position = new double[DIM];
}
void Construct(unsigned int DIM)
{
subP = new Node*[1<<DIM];
position = new double[DIM];
flag = true;
}
~Cell()
{
if(flag)
{
delete[] subP;
delete[] position;
}
}
void ClearPosition(unsigned char DIM)
{
for(int i = 0;i<DIM;++i)
position[i] = 0;
}
};
private:
Cell* root;//root pointer
Body* bodies;
Body* bodies2;
Node* freeCell = nullptr;
int NSUB;
int actLen;
Node** active;
Cell* interact;
double length;
unsigned char DIM;
std::function<void(int,int)> action;
std::function<void(int,Cell*)> bc_action;
std::function<bool(Cell* c, double psize, double* pmid)> accept;
bool firstCall = true;
void NewTree()
{
Node* p;
if(!firstCall)
{
p = root;
while(p != nullptr)
{
if(p->type == Type::Cell)
{
p->next = freeCell;
freeCell = p;
p = static_cast<Cell*>(p)->more;
}else
{
p = p->next;
}
}
}else
{
firstCall = false;
}
root = nullptr;
ncell = 0;
}
Cell* MakeCell()
{
Cell* c;
int i;
if(freeCell == nullptr)
{
c = new Cell(DIM);
}
else
{
c = static_cast<Cell*>(freeCell);
freeCell = c->next;
}
c->type = Type::Cell;
c->update = false;
for(int i = 0;i<NSUB;++i)
c->subP[i] = nullptr;
++ncell;
return c;
}
void ExpandBox()
{
rsize = 1;
double dmax = 0,d;
Body* p;
for(p = bodies;p<bodies + num;++p)
{
for(int dim = 0;dim<DIM;++dim)
{
d = std::abs(p->position[dim]-root->position[dim]);
if(d > dmax)
dmax = d;
}
}
while(rsize < 2*dmax)
rsize = 2*rsize;
}
void LoadBody(Body* p)
{
Cell* q; Cell* c;
int qind,k;
double qsize, dist2;
q = root;
qind = SubIndex(p,q);
qsize = rsize;
while(q->subP[qind] != nullptr)
{
if(q->subP[qind]->type == Type::Body)
{
c = MakeCell();
for(int k = 0;k<DIM;++k)
c->position[k] = q->position[k] + (p->position[k] < q->position[k] ? -qsize:qsize)/4;
c->subP[SubIndex(static_cast<Body*>(q->subP[qind]),c)] = q->subP[qind];
q->subP[qind] = c;
}
q = static_cast<Cell*>(q->subP[qind]);
qind = SubIndex(p,q);
qsize /= 2;
}
q->subP[qind] = p;
}
int SubIndex(Body* p, Cell* q)
{
int ind, k;
ind = 0;
for(k = 0;k<DIM;++k)
{
if(q->position[k] <= p->position[k])
ind += NSUB >> (k+1);
}
return ind;
}
void PropagateInfo(Cell* p, double psize, int lev, std::function<void(Cell*)> initializer, std::function<void(Cell*, double, Cell*)> propagater_cc, std::function<void(Cell*, double, int)> propagater_cb, std::function<void(Cell*, double)> dataProcessor)
{
Node* q;
tdepth = std::max(tdepth,lev);
initializer(p);
for(int i = 0;i<NSUB;++i)
{
if((q=p->subP[i]) != nullptr)
{
if(q->type == Type::Cell)
PropagateInfo(static_cast<Cell*>(q), psize/2, lev+1, initializer, propagater_cc, propagater_cb, dataProcessor);
p->update |= q->update;
if(q->type == Type::Cell)
propagater_cc(p,psize,static_cast<Cell*>(q));
else
propagater_cb(p,psize,static_cast<Body*>(q)->id);
}
}
dataProcessor(p,psize);
}
void ThreadTree(Node* p, Node* n)
{
int ndesc, i;
Node* desc[NSUB+1],*_p;
Cell* _cellP;
p->next = n;
if(p->type == Type::Cell)
{
_cellP = static_cast<Cell*>(p);
ndesc = 0;
for(i = 0;i<NSUB;++i)
{
_p = _cellP->subP[i];
if(_p != nullptr)
desc[ndesc++] = _p;
}
_cellP->more = desc[0];
desc[ndesc] = n;
for(i = 0;i<ndesc;++i)
ThreadTree(desc[i], desc[i+1]);
}
}
void WalkTree(Node** aptr, Node** nptr, Cell* cptr, int* bptr, int i, Node* p, double psize, double* pmid)
{
Node **np, **ap, *q;
int actSafe;
if(p->update)
{
np = nptr;
actSafe = actLen - NSUB;
for(ap = aptr; ap < nptr; ++ap)
{
if((*ap)->type == Type::Cell)
{
if(accept(static_cast<Cell*>(*ap),psize,pmid))
{
cptr->position = (*ap)->position;
cptr->info = static_cast<Cell*>(*ap)->info;
++cptr;
}else
{
if(np-active >= actSafe)
{
std::cout << "dont't have enough memory";
std::exit(-1);
}
for(q = static_cast<Cell*>(*ap)->more;q != (*ap)->next; q = q->next)
*np++ = q;
}
}else
{
if((*ap) != p)
{
bptr[i] = static_cast<Body*>(*ap) -> id;
++i;
}
}
}
if(np != nptr)
WalkSub(nptr,np,cptr,bptr,i,p,psize,pmid);
else
{
if (p->type != Type::Body) /* must have found a body */
exit(2);
DoAction(static_cast<Body*>(p),cptr,bptr,i);
}
}
}
bool isFarFromTarget(Node* c, double psize, double* pmid)
{
double dx, farLen;
farLen = psize + length;
for(int dim = 0;dim < DIM;++dim)
{
dx = c->position[dim] - pmid[dim];
if(std::abs(dx) > farLen)
return true;
}
return false;
}
void WalkSub(Node** nptr, Node** np, Cell* cptr, int* bptr, int i, Node* p, double psize, double* pmid)
{
double poff;
Node* q;
int k;
double nmid[DIM];
poff = psize/4;
if(p->type == Type::Cell)
{
for(q = static_cast<Cell*>(p)->more; q != p->next;q=q->next)
{
for(k = 0;k<DIM;++k)
nmid[k] = pmid[k] + (q->position[k] < pmid[k] ? -poff:poff);
WalkTree(nptr,np,cptr,bptr,i,q,psize/2,nmid);
}
}else
{
for(k = 0;k<DIM;++k)
nmid[k] = pmid[k] + (p->position[k] < pmid[k] ? -poff:poff);
WalkTree(nptr,np,cptr,bptr,i,p,psize/2,nmid);
}
}
void DoAction(Body* p0, Cell* cptr, int* bptr, int i)
{
int bodyID = p0->id;
Cell* p;
for(p = interact;p < cptr;++p)
bc_action(bodyID,p);
for(int k = 0;k<i;++k)
action(bodyID,bptr[k]);
}
public:
double rsize = 1;//root size
int tdepth;//木の高さ
int num;//現在のAタイプ粒子数
int num2;//現在のBタイプ粒子数
int num_max;//Aタイプのマックス粒子数
int num_max2;//Bタイプのマックス粒子数
BarnesHutTree(const posType& position, unsigned int number, unsigned char _DIM):num(number),num2(0),num_max(number),num_max2(0),DIM(_DIM),NSUB(1<<_DIM)//about particle labeld "i", you must be able to access d-axis position by "position[i][dim]"
{
bodies = Allocate_Array<Body>(number);
for(int i = 0;i<number;++i)
{
bodies[i].type = Type::Body;
bodies[i].update = true;
bodies[i].position = position[i];
bodies[i].id = i;
}
}
BarnesHutTree(const posType& position, unsigned int number, const posType& position2, unsigned int number2, unsigned int _DIM):num(number),num2(number2),num_max(number),num_max2(number2),DIM(_DIM),NSUB(1<<_DIM)//about particle labeld "i", you must be able to access d-axis position by "position[i][dim]"
{
bodies = Allocate_Array<Body>(number);
bodies2 = Allocate_Array<Body>(number2);
for(int i = 0;i<number;++i)
{
bodies[i].type = Type::Body;
bodies[i].update = true;
bodies[i].position = position[i];
bodies[i].id = i;
}
for(int i = 0;i<number2;++i)
{
bodies2[i].type = Type::Body;
bodies2[i].update = false;
bodies2[i].position = position2[i];
bodies2[i].id = i+number;
}
}
~BarnesHutTree()
{
NewTree();
Cell* c;
while(freeCell != nullptr)
{
c = static_cast<Cell*>(freeCell);
freeCell = c->next;
delete c;
}
if(freeCell != nullptr)
delete freeCell;
delete[] bodies;
}
/**
* @brief make tree
*
* remember the fact that all of edge of tree is either nullptr or body
* @param initializer initialize additional cell info
* @param propagater_cc the function for when cell B is a child of cell A, cell A gets info from cell B and updates additional cell info
* @param propagater_cb the function for when body is a child of cell, cell gets info from body and update additional cell info
* @param dataProcessor the function for when info propagation is over, adjust data of cell
*/
void MakeTree(std::function<void(Cell*)> initializer, std::function<void(Cell*, double, Cell*)> propagater_cc, std::function<void(Cell*, double, int)> propagater_cb, std::function<void(Cell*, double)> dataProcessor)
{
Body* p;
NewTree();
root = MakeCell();
root->ClearPosition(DIM);
ExpandBox();
for(p = bodies;p<bodies+num;++p)
LoadBody(p);
tdepth = 0;
PropagateInfo(root, rsize, 0, initializer, propagater_cc, propagater_cb, dataProcessor);
ThreadTree(root,nullptr);
}
void MakeTree(int number, int number2,std::function<void(Cell*)> initializer, std::function<void(Cell*, double, Cell*)> propagater_cc, std::function<void(Cell*, double, int)> propagater_cb, std::function<void(Cell*, double)> dataProcessor)
{
Body* p;
num = number;
num2 = number2;
NewTree();
root = MakeCell();
root->ClearPosition(DIM);
ExpandBox();
for(p = bodies;p<bodies+num;++p)
LoadBody(p);
for(p = bodies2;p<bodies2+num2;++p)
LoadBody(p);
tdepth = 0;
PropagateInfo(root, rsize, 0, initializer, propagater_cc, propagater_cb, dataProcessor);
ThreadTree(root,nullptr);
}
/**
* @brief
*
* @param _accept
* @param _action
* @param BC_action
*/
void FindNeighborParticleAndAction(std::function<bool(Cell* c, double psize, double* pmid)> _accept, std::function<void(int,int)> _action, std::function<void(int,Cell*)> BC_action)
{
double rmid[DIM];
actLen = 20*216*tdepth;
accept = _accept;
action = _action; //BB_action
bc_action = BC_action;
active = Allocate_Array<Node*>(actLen);
interact = Allocate_Array<Cell>(actLen);
int interact_body[actLen];
active[0] = root;
for(int dim = 0;dim<DIM;++dim)
rmid[dim] = 0;
WalkTree(active, active+1, interact, interact_body, 0, root, rsize, rmid);
delete[] active;
delete[] interact;
}
};