Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 15 (100.0%) | 322 (100.0%) | 21.4 |
dav | 2 (13.3%) | 249 (77.3%) | 124.5 |
harman | 4 (26.7%) | 63 (19.6%) | 15.7 |
ahumphrey | 2 (13.3%) | 6 (1.9%) | 3.0 |
jas | 7 (46.7%) | 4 (1.2%) | 0.5 |
Beginnings MALLOC_TRACE support removal, e.g. MALLOC_TRACE_TAG_SCOPE and other macros.
This library, though once useful, no longer works with Uintah and is not maintained, plus inextricably tied to SCI_MALLOC, which ultimately needs to go away.
6 lines of code changed in 2 files:
M Core/Disclosure/TypeDescription.h
M Core/Disclosure/TypeDescription.cc
- Added utility function to return string version of "Type" enumerated type.
M Core/ProblemSpec/ProblemSpec.cc
- White space.
3 lines of code changed in 1 file:
Update copyright.
4 lines of code changed in 7 files:
Added print() method that prints values relative to this node. Used for debugging.
Example:
Node Name: material name => Steel Ring
getNextSibling(): material
getParent(): MPM
findNextBlock(): material
Node Name: material name => reactant
getNextSibling(): contact
getParent(): MPM
findNextBlock(): contact
44 lines of code changed in 2 files:
Continuation of commit r56249 - this time for some various files.
Mostly cosmetic changes, and preparing for removing a hacked out warning when we moved to C++ 11.
These changes have passed the local RT on Baja.
- The biggest update in this commit (the update to remove the c++11 warning hack) is that you will
no longer be able to compare a ProblemSpecP to 0 (you will need to compare to 'nullptr').
- White space, coding standards, indentation, remove tabs.
- Line up some variables to make them easier to read.
- Use of 80+ columns of text (we decided to allow this 10 years ago) and it makes reading longer lines of code on the screen easier.
- Use {} for if/else clauses even if they are only one line long.
- Please put "else" and "else if" on a new line. The added white space makes following the branching much easier.
M CCA/Components/DataArchiver/DataArchiver.h
M CCA/Components/Parent/Switcher.cc
- Remove the outputPS() function as it appears to be dead code (was commented out).
M CCA/Components/Parent/Switcher.h
M CCA/Components/ProblemSpecification/ProblemSpecReader.cc
- More verbose error message.
M CCA/Components/ReduceUda/UdaReducer.cc
M CCA/Components/Solvers/AMR/AMRSolver.cc
M CCA/Components/Solvers/CGSolver.cc
M CCA/Components/Solvers/HypreSolver.cc
M Core/ProblemSpec/ProblemSpec.cc
M R_Tester/helpers/runSusTests.py
M R_Tester/toplevel/generateGoldStandards.py
- Remove the SCI_SIGNALMODE env flag that was being passed to the tester. As far as I can tell, SCI_SIGNALMODE
was removed from Uintah a long time ago when we cut out a lot of SCIRun stuff. Also, in a bizarre twist,
adding "-x SCI_SIGNALMODE" (or in fact, any "-x " var that is over 8 characters long) causes the answers
to a few tests (eg: methane_fire_8patch_petscrad) to fail exact comparison (at e-15 or so).
246 lines of code changed in 1 file:
added getParent() which returns the parent of the node. Needed for next commit.
19 lines of code changed in 2 files: