[root]/Packages/BioPSE/Dataflow/Modules/Inverse
Author | Changes | Lines of Code | Lines per Change |
---|---|---|---|
Totals | 44 (100.0%) | 388 (100.0%) | 8.8 |
callahan | 16 (36.4%) | 254 (65.5%) | 15.8 |
mjc | 6 (13.6%) | 86 (22.2%) | 14.3 |
dav | 16 (36.4%) | 44 (11.3%) | 2.7 |
worthen | 3 (6.8%) | 3 (0.8%) | 1.0 |
mdavis | 1 (2.3%) | 1 (0.3%) | 1.0 |
dmw | 2 (4.5%) | 0 (0.0%) | 0.0 |
Use get_input_handle and send_output_handle for ports.
0 lines of code changed in 2 files:
Use DenseMatrix::identity().
0 lines of code changed in 2 files:
Clean up mat_trans_mult_mat function, remove unneeded beg,end variables.
16 lines of code changed in 1 file:
Remove unused mat_mult function.
0 lines of code changed in 1 file:
Fix remaining memory leaks, other minor cleanups.
36 lines of code changed in 1 file:
Clean up pointer dereferencing ugliness.
18 lines of code changed in 1 file:
Fix more memory leaks, use vector<double> instead of Array1.
29 lines of code changed in 1 file:
Fix more memory leaks.
8 lines of code changed in 1 file:
Fix several memory leaks.
18 lines of code changed in 1 file:
check for null pointer.
1 lines of code changed in 1 file:
Use new port handling.
7 lines of code changed in 1 file:
Clean up misuse of whitespace.
112 lines of code changed in 1 file:
Remove redundant matrix casting functions.
3 lines of code changed in 1 file:
Minor cleanups, formatting.
6 lines of code changed in 1 file:
Dataflow/Modules/Render/Painter.h
Dataflow/Modules/Render/Painter.cc
Fixed compiler warnings.
Dataflow/Modules/String/SprintfMatrix.cc
Packages/BioPSE/Dataflow/Modules/Forward/ApplyFEMVoltageSource.cc
Packages/BioPSE/Dataflow/Modules/Forward/EITAnalyticSolution.cc
Packages/BioPSE/Dataflow/Modules/Inverse/Tikhonov.cc
Packages/BioPSE/Dataflow/Modules/Inverse/DipoleSearch.cc
Initialized variables that could be used uninitialized. (Not sure if
these are the right defaults, but at least they will be consistent.)
Packages/BioPSE/Dataflow/Modules/Forward/SetupBEMatrix.cc
Changed 'filed' to 'field'... I think it was a typo.
Packages/rtrt/Core/SketchMaterial.h
Packages/rtrt/StandAlone/scenes/sub.mk
SketchMaterial no longer compiles with the newest Teem. It was
originally created by James Bigler to work around thread safety/memory
issues in Teem. He used internal Teem functions/variables to make
things work. With the updates to Teem, the SketchMaterial will
probably need to be completely rewritten. It is only used in one
scene right now, so I am turning it off. (Note, there are a few #if
0's in the SketchMaterial.h file right now as I was trying to get it
to compile, but it doesn't make sense to turn everything off and leave
the file, so I'm removing it from the sub.mk.
Packages/rtrt/StandAlone/tex-utils/pnn-vq.cc
Fixed (strict) compilation error. (Must use the Class, not an
instance of the Class.)
Packages/rtrt/StandAlone/tex-utils/pca-error.cc
Use the new Teem '_nva' version of the function.
2 lines of code changed in 3 files:
- Fix linking problems in BioPSE package on Mac (missing dependencies)
0 lines of code changed in 2 files:
Two things coming on it commit:
1) Dataflow/Ports was moved into Dataflow/Network/Ports
- Fixed the sub.mk files to not use libDataflow_Ports as it is now part of
libDataflow_Network. Cleaned many of the sub.mk files up so that
libraries were only listed once.
- I've only tested these changes on the main Packages... I visually
inspected the others, don't know for sure if I got everything.
2) Clean up of Uintah problems from the large commit Marty made earlier
- continue to use getID() for patches.
- another commit is coming shortly to continue the fixes for Uintah
36 lines of code changed in 12 files:
add with-tetgen option to configure, Make Module.h conform to the coding standard, and all the massive fallout from renaming variables and slots in that class
86 lines of code changed in 6 files:
Cleanup ProgressReporter class. Remvoed un-needed ProgressReporter::update_progress(int, int) method, and replaced w/ call to ProgressReporter(double) method. Removed double Module::progress; and use base class protected double ProgressReporter::progress_percent_; instead
1 lines of code changed in 1 file:
Gcc 4.1 fixes.
M Core/Geometry/Point.h
M Core/Persistent/Persistent.h
AffineCombination (Point.h) and auto_istream (Persistent.h) were never
actually 'declared'. There were made 'friends' which on many
compilers is a good enough declaration... however, apparently on gcc
4.1, it isn't... so I've added declarations for them just outside the
classes they are friends to. [Note, we've run into this problem
before for other classes, and this seems to be the correct fix. Let
me know if you have other ideas.]
M Packages/BioPSE/Dataflow/Modules/Inverse/Tikhonov.cc
Can't use ClassName::function() (Tikhonov::mat_mult()) inside the
class... at least not on gcc 4.1.
6 lines of code changed in 1 file:
(1 more)