Skip to content

Commit 360dc23

Browse files
committed
Fix compilation failure of tests
1 parent 513f40b commit 360dc23

1 file changed

Lines changed: 4 additions & 0 deletions

File tree

splashsurf_lib/tests/integration_tests/test_octree.rs

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -85,6 +85,7 @@ fn build_octree() {
8585
particles.as_slice(),
8686
SubdivisionCriterion::MaxParticleCount(30),
8787
0.0,
88+
false,
8889
);
8990

9091
/*
@@ -126,6 +127,7 @@ fn build_octree_from_vtk() {
126127
particles.as_slice(),
127128
SubdivisionCriterion::MaxParticleCount(60),
128129
0.0,
130+
false,
129131
);
130132

131133
// Sum the number of particles per leaf
@@ -172,6 +174,7 @@ fn build_octree_par_consistency() {
172174
particles.as_slice(),
173175
SubdivisionCriterion::MaxParticleCount(20),
174176
0.0,
177+
false,
175178
);
176179

177180
let mut octree_par = Octree::new(&grid, particles.as_slice().len());
@@ -180,6 +183,7 @@ fn build_octree_par_consistency() {
180183
particles.as_slice(),
181184
SubdivisionCriterion::MaxParticleCount(20),
182185
0.0,
186+
false,
183187
);
184188

185189
let mut particle_count = 0;

0 commit comments

Comments
 (0)