Changeset f57182 for src/comm/comm.cpp


Ignore:
Timestamp:
Mar 30, 2013, 2:44:52 PM (13 years ago)
Author:
Julian Iseringhausen <isering@…>
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)
Message:

Open boundary conditions.

Conflicts:

lib/vmg/src/Makefile.am
lib/vmg/src/base/factory.cpp
lib/vmg/test/unit_test/library/dirichlet_fas_lr_mpi.cpp

File:
1 edited

Legend:

Unmodified
Added
Removed
  • src/comm/comm.cpp

    rd13e27 rf57182  
    4747vmg_float Comm::ComputeResidualNorm(Multigrid& sol_mg, Multigrid& rhs_mg)
    4848{
    49 #ifdef DEBUG_MATRIX_CHECKS
    50   sol().IsCompatible(rhs());
    51   sol().IsConsistent();
    52   rhs().IsConsistent();
    53 #endif
    54 
    5549  Stencil::iterator stencil_iter;
    5650  vmg_float norm = 0.0;
     
    6660  const Grid& sol = sol_mg();
    6761  const Grid& rhs = rhs_mg();
     62
     63#ifdef DEBUG_MATRIX_CHECKS
     64  sol.IsCompatible(rhs);
     65  sol.IsConsistent();
     66  rhs.IsConsistent();
     67#endif
    6868
    6969  for (int i=rhs.Local().Begin().X(); i<rhs.Local().End().X(); ++i)
Note: See TracChangeset for help on using the changeset viewer.