Directory Core/Grid/BoundaryConditions/

Total Files:
31
Deleted Files:
0
Lines of Code:
6268

[root]/Core/Grid/BoundaryConditions

Lines of Code

Core/Grid/BoundaryConditions/ Lines of Code

Developers

Author Changes Lines of Code Lines per Change
Totals 67 (100.0%) 87 (100.0%) 1.2
dav 4 (6.0%) 55 (63.2%) 13.7
jas 62 (92.5%) 31 (35.6%) 0.5
derekhar 1 (1.5%) 1 (1.1%) 1.0

Most Recent Commits

jas 2017-04-20 13:18 Rev.: 56452

Update copyright.

31 lines of code changed in 62 files:

  • Core/Grid/BoundaryConditions: AnnulusBCData.cc (+1 -1), AnnulusBCData.h (new), BCData.cc (+1 -1), BCData.h (new), BCDataArray.cc (new), BCDataArray.h (+1 -1), BCGeomBase.cc (new), BCGeomBase.h (+1 -1), BCUtils.cc (new), BCUtils.h (new), BoundCond.h (+1 -1), BoundCondBase.h (new), BoundCondFactory.cc (new), BoundCondFactory.h (+1 -1), BoundCondReader.cc (new), BoundCondReader.h (new), CircleBCData.cc (+1 -1), CircleBCData.h (+1 -1), DifferenceBCData.cc (new), DifferenceBCData.h (+1 -1), EllipseBCData.cc (new), EllipseBCData.h (new), RectangleBCData.cc (+1 -1), RectangleBCData.h (new), RectangulusBCData.cc (+1 -1), RectangulusBCData.h (+1 -1), SideBCData.cc (new), SideBCData.h (+1 -1), UnionBCData.cc (+1 -1), UnionBCData.h (new), sub.mk (new)
derekhar 2017-03-09 17:03 Rev.: 56311

corrected warning/message for ellipse boundary object.

1 lines of code changed in 1 file:

  • Core/Grid/BoundaryConditions: BoundCondReader.cc (+1 -1)
dav 2017-02-26 18:03 Rev.: 56253


Continuation of commit r56249 - getting into the Core and the UCF now.

Mostly cosmetic changes - removing the actual hack (see Handle.h below) to
allow for better type safety using c++11 nullptr.

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/Arches/BoundaryConditions/BoundaryFunctorHelper.cc
M CCA/Components/LoadBalancers/DynamicLoadBalancer.cc
M CCA/Components/LoadBalancers/LoadBalancerCommon.cc
M CCA/Components/LoadBalancers/ParticleLoadBalancer.cc
M CCA/Components/Schedulers/DynamicMPIScheduler.cc
M CCA/Components/Schedulers/MPIScheduler.cc
M CCA/Components/Schedulers/UnifiedScheduler.cc
M CCA/Ports/PIDXOutputContext.cc
M Core/GeometryPiece/GeometryPieceFactory.cc
M Core/Grid/BoundaryConditions/BCDataArray.cc
M Core/Grid/BoundaryConditions/BCDataArray.h

- Pass const strings as references instead of copying.

M Core/Grid/BoundaryConditions/BCUtils.cc
M Core/Grid/BoundaryConditions/BoundCondReader.cc

M Core/Grid/Level.h
M Core/Grid/Level.cc

- Pass const params as const.
- Removed m_patches variables as it isn't used anywhere.
- Very few real changes in this file, use diff -w.

M Core/Grid/Patch.h
M Core/Grid/Patch.cc

- Place .h one line functions on one line as it makes the viewing of the Class spec easier
(and this is the main purpose of the .h file.)
- Line up vars/ for easier reading.

M Core/Grid/Task.cc

M Core/Grid/Variables/ComputeSet.h

- Place .h one line functions on one line as it makes the viewing of the Class spec easier
(and this is the main purpose of the .h file.)

M Core/Grid/Variables/ParticleVariable.h
M Core/Grid/Variables/ParticleVariable_special.cc
M Core/Grid/Variables/Variable.cc

- Fix end comment on readPIDX()

M Core/Util/Handle.h

- Here is the hack that is being removed... The "==" operator was overloaded in order
to allow for comparison of pointers to 0. When this is removed, then (previous to these
commits) you would be spammed by warnings about ambiguous "==" operator. By removing this
operator and forcing the comparison to nullptr (as of c++11), type safety is increased.

55 lines of code changed in 4 files:

  • Core/Grid/BoundaryConditions: BCDataArray.cc (+4 -3), BCDataArray.h (+6 -6), BCUtils.cc (+4 -6), BoundCondReader.cc (+41 -41)
Generated by StatSVN 0.7.0