[root]/Core/Math
TntJama
(26 files, 7967 lines)
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 73 (100.0%) | 849 (100.0%) | 11.6 |
banerjee | 2 (2.7%) | 632 (74.4%) | 316.0 |
jsutherland | 10 (13.7%) | 132 (15.5%) | 13.2 |
guilkey | 3 (4.1%) | 56 (6.6%) | 18.6 |
jas | 58 (79.5%) | 29 (3.4%) | 0.5 |
Fast integration of smooth functions using double expopential integrator.
632 lines of code changed in 2 files:
Update copyright year.
29 lines of code changed in 58 files:
tighten up a few things here.
2 lines of code changed in 1 file:
Eliminate "using namespace std" and similar from header files. That is a big no-no!
13 lines of code changed in 7 files:
Adding yet another polarDecomposition technique. This one
(polarDecompositionAFFinvTran) seems to do a better job of returning
an orthogonal rotation tensor that polarDecompositionRMB.
54 lines of code changed in 2 files:
Spit out a bit more information when polar decomposition fails.
2 lines of code changed in 1 file:
This checkin may break something if I was not able to build it. I will clean it up if that happens...
- removing "using" standard namespace stuff from headers. This is really bad practice, and anyone doing it should be flogged. Opening up a namespace in a header file defeats the purpose of namespaces because all downstream inclusions of the header file will also result in that namespace opening up. This can lead to inadvertent name clashes, etc. Only open a namespace in an implementation file!
- put the SymmMatrix3 implementation in the Uintah namespace to be consistent with its declaration.
117 lines of code changed in 2 files: