We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e94a62c commit 7a649d1Copy full SHA for 7a649d1
src/data_structures/APR/GenInfo.hpp
@@ -15,8 +15,8 @@ class GenInfo {
15
}
16
17
public:
18
- int l_min;
19
- int l_max;
+ int l_min = 0;
+ int l_max = 0;
20
int org_dims[3]={0,0,0};
21
22
uint8_t number_dimensions = 3;
@@ -25,7 +25,7 @@ class GenInfo {
25
std::vector<int> y_num;
26
std::vector<int> z_num;
27
28
- uint64_t total_number_particles;
+ uint64_t total_number_particles = 0;
29
30
std::vector<int> level_size; // precomputation of the size of each level, used by the iterators.
31
0 commit comments