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
use super::*;
type NodeWrapperVistr<'a, 'b, T, M> = VistrMut<'a, NodeWrapper<'b, T, M>, PreOrder>;
pub enum GravEnum<'a, T: Aabb, M> {
Mass(&'a mut M),
Bot(AabbPin<&'a mut [T]>),
}
pub trait Nbody {
type T: Aabb<Num = Self::N>;
type N: Num;
type Mass: Default + Copy + core::fmt::Debug;
fn compute_center_of_mass(&mut self, a: &[Self::T]) -> Self::Mass;
fn is_close(&self, a: &Self::Mass, line: Self::N, a: impl Axis) -> bool;
fn is_close_half(&self, a: &Self::Mass, line: Self::N, a: impl Axis) -> bool;
fn gravitate(&mut self, a: GravEnum<Self::T, Self::Mass>, b: GravEnum<Self::T, Self::Mass>);
fn gravitate_self(&mut self, a: AabbPin<&mut [Self::T]>);
fn apply_a_mass<'a>(
&'a mut self,
mass: Self::Mass,
i: impl Iterator<Item = AabbPin<&'a mut Self::T>>,
len: usize,
);
fn combine_two_masses(&mut self, a: &Self::Mass, b: &Self::Mass) -> Self::Mass;
}
use compt::dfs_order::PreOrder;
use compt::dfs_order::VistrMut;
struct NodeWrapper<'a, T: Aabb, M> {
node: Node<'a, T>,
mass: M,
}
fn build_masses2<N: Nbody>(vistr: NodeWrapperVistr<N::T, N::Mass>, no: &mut N) -> N::Mass {
let (nn, rest) = vistr.next();
let mass = no.compute_center_of_mass(&nn.node.range);
let mass = if let Some([left, right]) = rest {
let a = build_masses2(left, no);
let b = build_masses2(right, no);
let m = no.combine_two_masses(&a, &b);
no.combine_two_masses(&m, &mass)
} else {
mass
};
nn.mass = mass;
mass
}
fn collect_masses<'a, 'b, N: Nbody>(
root_div: N::N,
root_axis: impl Axis,
vistr: NodeWrapperVistr<'b, 'a, N::T, N::Mass>,
no: &mut N,
func1: &mut impl FnMut(&'b mut NodeWrapper<'a, N::T, N::Mass>, &mut N),
func2: &mut impl FnMut(&'b mut AabbPin<&'a mut [N::T]>, &mut N),
) {
let (nn, rest) = vistr.next();
if !no.is_close_half(&nn.mass, root_div, root_axis) {
func1(nn, no);
return;
}
func2(&mut nn.node.range, no);
if let Some([left, right]) = rest {
collect_masses(root_div, root_axis, left, no, func1, func2);
collect_masses(root_div, root_axis, right, no, func1, func2);
}
}
fn pre_recc<N: Nbody>(
root_div: N::N,
root_axis: impl Axis,
root: &mut NodeWrapper<N::T, N::Mass>,
vistr: NodeWrapperVistr<N::T, N::Mass>,
no: &mut N,
) {
let (nn, rest) = vistr.next();
if !no.is_close(&nn.mass, root_div, root_axis) {
no.gravitate(
GravEnum::Bot(root.node.range.borrow_mut()),
GravEnum::Mass(&mut nn.mass),
);
return;
}
no.gravitate(
GravEnum::Bot(root.node.range.borrow_mut()),
GravEnum::Bot(nn.node.range.borrow_mut()),
);
if let Some([left, right]) = rest {
pre_recc(root_div, root_axis, root, left, no);
pre_recc(root_div, root_axis, root, right, no);
}
}
fn recc_common<'a, 'b, N: Nbody>(
axis: impl Axis,
vistr: NodeWrapperVistr<'a, 'b, N::T, N::Mass>,
no: &mut N,
) -> Option<[NodeWrapperVistr<'a, 'b, N::T, N::Mass>; 2]> {
let (nn, rest) = vistr.next();
no.gravitate_self(nn.node.range.borrow_mut());
if let Some([mut left, mut right]) = rest {
if let Some(div) = nn.node.div {
pre_recc(div, axis, nn, left.borrow_mut(), no);
pre_recc(div, axis, nn, right.borrow_mut(), no);
let mut finished_masses = Vec::new();
let mut finished_bots = Vec::new();
collect_masses(
div,
axis,
left.borrow_mut(),
no,
&mut |a, _| finished_masses.push(a),
&mut |a, _| finished_bots.push(a),
);
let mut finished_masses2 = Vec::new();
let mut finished_bots2 = Vec::new();
collect_masses(
div,
axis,
right.borrow_mut(),
no,
&mut |a, _| finished_masses2.push(a),
&mut |a, _| finished_bots2.push(a),
);
for a in finished_masses.into_iter() {
for b in finished_masses2.iter_mut() {
no.gravitate(GravEnum::Mass(&mut a.mass), GravEnum::Mass(&mut b.mass));
}
for b in finished_bots2.iter_mut() {
no.gravitate(GravEnum::Mass(&mut a.mass), GravEnum::Bot(b.borrow_mut()));
}
}
for a in finished_bots.into_iter() {
for b in finished_masses2.iter_mut() {
no.gravitate(GravEnum::Bot(a.borrow_mut()), GravEnum::Mass(&mut b.mass));
}
for b in finished_bots2.iter_mut() {
no.gravitate(GravEnum::Bot(a.borrow_mut()), GravEnum::Bot(b.borrow_mut()));
}
}
Some([left, right])
} else {
None
}
} else {
None
}
}
fn recc<N: Nbody>(
axis: impl Axis,
vistr: VistrMut<NodeWrapper<N::T, N::Mass>, PreOrder>,
no: &mut N,
) {
let keep_going = recc_common(axis, vistr, no);
if let Some([left, right]) = keep_going {
recc(axis.next(), left, no);
recc(axis.next(), right, no);
}
}
fn apply_tree<N: Nbody>(mut vistr: NodeWrapperVistr<N::T, N::Mass>, no: &mut N) {
{
let mass = vistr.borrow_mut().next().0.mass;
let len = vistr
.borrow_mut()
.dfs_preorder_iter()
.map(|x| x.node.range.borrow_mut().len())
.sum();
let it = vistr
.borrow_mut()
.dfs_preorder_iter()
.flat_map(|x| x.node.range.borrow_mut().iter_mut());
no.apply_a_mass(mass, it, len);
}
let (_, rest) = vistr.next();
if let Some([left, right]) = rest {
apply_tree(left, no);
apply_tree(right, no);
}
}
impl<'a, T: Aabb> crate::Tree<'a, T> {
pub fn handle_nbody<N: Nbody<T = T>>(&mut self, no: &mut N) {
pub fn nbody_mut<'a, N: Nbody>(
tree: Vec<Node<'a, N::T>>,
no: &mut N,
) -> Vec<Node<'a, N::T>> {
let mut newnodes: Vec<_> = tree
.into_iter()
.map(|x| NodeWrapper {
node: x,
mass: Default::default(),
})
.collect();
let tree = compt::dfs_order::CompleteTreeMut::from_preorder_mut(&mut newnodes).unwrap();
let mut vistr = tree.vistr_mut();
build_masses2(vistr.borrow_mut(), no);
recc(default_axis(), vistr.borrow_mut(), no);
apply_tree(vistr, no);
newnodes.into_iter().map(|x| x.node).collect()
}
let mut vvv = vec![];
std::mem::swap(&mut self.nodes, &mut vvv);
let mut new = nbody_mut(vvv, no);
std::mem::swap(&mut self.nodes, &mut new);
}
}
impl<'a, T: Aabb> Naive<'a, T> {
pub fn handle_nbody<N: Nbody<T = T>>(&mut self, no: &mut N) {
pub fn naive_nbody_mut<T: Aabb>(
bots: AabbPin<&mut [T]>,
func: impl FnMut(AabbPin<&mut T>, AabbPin<&mut T>),
) {
queries::for_every_pair(bots, func);
}
naive_nbody_mut(self.inner.borrow_mut(), |a, b| {
no.gravitate(GravEnum::Bot(a.into_slice()), GravEnum::Bot(b.into_slice()));
});
}
}