[root]/CCA/Components/Regridder
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 25 (100.0%) | 313 (100.0%) | 12.5 |
harman | 12 (48.0%) | 278 (88.8%) | 23.1 |
dav | 5 (20.0%) | 18 (5.8%) | 3.6 |
jsutherland | 8 (32.0%) | 17 (5.4%) | 2.1 |
This one has been a long time coming.
Rip out the standard namespace opening that has been polluting header files throughout the framework. This crept into all sorts of places.
DO NOT open namespaces in header files. Ever.
16 lines of code changed in 4 files:
More namespace cleanup. Grrr!
0 lines of code changed in 1 file:
This commit will (hopefully) fix the Mac OSX regression tester.
M Makefile.in
- Don't run the verify_zlib if it is a static build.
M CCA/Components/ProblemSpecification/sub.mk
M Core/ProblemSpec/sub.mk
- On some Mac installs, the MPI library brings in a library load path
that has alternative system libraries in it. The most usual case is
with libz.dylib. If we don't add the MPI_LIBRARY line to this link
line, then these libs will link vs the system (usually /usr/lib/libz.dylib)
and thus we will have two different compression libraries linked
into the same executable... which will eventually cause a bad UDA to
be created.
M CCA/Components/ProblemSpecification/ProblemSpecReader.cc
- Add a better error message.
M CCA/Components/Regridder/TiledRegridder.cc
- Alphabetize the includes.
8 lines of code changed in 2 files:
ImpMPM, MPM, DDT1:
- added component names in task name. It's easier to "see" what task is running when if
the name is complete.
TiledRegridder:
- output refinement ratio for each level in the grid statistics section.
5 lines of code changed in 1 file:
Cosmetic fix so one can grep for 'Mod(', etc.
10 lines of code changed in 3 files:
problemSetup()
- initialize d_inputMinTileSize after d_minTileSize has been populated.
4 lines of code changed in 1 file:
Use % instead of fmod for integers.
2 lines of code changed in 1 file:
problemSetup()
-throw an exception if the minimum patch size is not divisible by the refinement ratio.
If you don't catch this then the fine level cells won't properly overlap the coarse level cells.
12 lines of code changed in 3 files:
cosmetics:
- added dividers
- added horizontal and vertical spaces
- clean out some unused variables.
73 lines of code changed in 2 files:
ComputeTiles()
- Increased tileHigh by (1,1,1). We must use inclusive loops in the tile loops otherwise regions
of space aren't searched for refinement flags.
- Added bulletproofing when assertions are turned on. Throw an exception if cells in a patch
are not searched for a refinement flags.
44 lines of code changed in 1 file:
Cosmetic changes:
- removed tabs
- added dividing lines
- added vertical and horzontal spaces
131 lines of code changed in 2 files:
Clean up another warning - remove an unused variable.
0 lines of code changed in 2 files:
Fix a warning.
1 lines of code changed in 1 file:
Added bulletproofing. A user must specify more than 1 max_levels if they're using
AMR and a regridder.
7 lines of code changed in 1 file: