[root]/CCA/Components/ProblemSpecification
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 10 (100.0%) | 15 (100.0%) | 1.5 |
harman | 1 (10.0%) | 9 (60.0%) | 9.0 |
jas | 5 (50.0%) | 3 (20.0%) | 0.6 |
dav | 2 (20.0%) | 3 (20.0%) | 1.5 |
ahumphrey | 2 (20.0%) | 0 (0.0%) | 0.0 |
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.
0 lines of code changed in 2 files:
Update copyright.
3 lines of code changed in 5 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).
2 lines of code changed in 1 file:
UPS_spec code:
Allow the developer to specify
"OPTIONAL DOUBLE 'positive' " instead of
"OPTIONAL DOUBLE 'positive'"
Warn developer in exception to remove single quotes in needs_applies_to values.
9 lines of code changed in 1 file:
Add more info to error message
1 lines of code changed in 1 file: