- Timestamp:
- Jun 8, 2016, 8:21:02 PM (9 years ago)
- Children:
- 0c9476
- Parents:
- e480fc
- git-author:
- Frederik Heber <heber@…> (05/27/16 18:33:31)
- git-committer:
- Frederik Heber <heber@…> (06/08/16 20:21:02)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
src/Fragmentation/Summation/SetValues/SamplingGridProperties_inline.hpp
re480fc r9ab682 42 42 const size_t SamplingGridProperties::getGridPointsPerAxis() const 43 43 { 44 return pow(2, level); 44 static size_t s_gridpoints = 1; 45 static int s_level = 0; 46 if (s_level != level) { 47 s_gridpoints = 1 << level; 48 s_level = level; 49 } 50 return s_gridpoints; 45 51 } 46 52
Note:
See TracChangeset
for help on using the changeset viewer.
