Changeset f57182 for src/comm/comm.cpp
- Timestamp:
- Mar 30, 2013, 2:44:52 PM (13 years ago)
- Children:
- 8180d8
- Parents:
- d13e27
- git-author:
- Julian Iseringhausen <isering@…> (06/11/12 14:02:16)
- git-committer:
- Julian Iseringhausen <isering@…> (03/30/13 14:44:52)
- File:
-
- 1 edited
-
src/comm/comm.cpp (modified) (2 diffs)
Legend:
- Unmodified
- Added
- Removed
-
src/comm/comm.cpp
rd13e27 rf57182 47 47 vmg_float Comm::ComputeResidualNorm(Multigrid& sol_mg, Multigrid& rhs_mg) 48 48 { 49 #ifdef DEBUG_MATRIX_CHECKS50 sol().IsCompatible(rhs());51 sol().IsConsistent();52 rhs().IsConsistent();53 #endif54 55 49 Stencil::iterator stencil_iter; 56 50 vmg_float norm = 0.0; … … 66 60 const Grid& sol = sol_mg(); 67 61 const Grid& rhs = rhs_mg(); 62 63 #ifdef DEBUG_MATRIX_CHECKS 64 sol.IsCompatible(rhs); 65 sol.IsConsistent(); 66 rhs.IsConsistent(); 67 #endif 68 68 69 69 for (int i=rhs.Local().Begin().X(); i<rhs.Local().End().X(); ++i)
Note:
See TracChangeset
for help on using the changeset viewer.
