vtf-logo

src/3d/dummy-routines/chk3xx.f

c
c
c     ==========================================================
      subroutine chk3(q,mx,my,mz,lb,ub,lbr,ubr,shaper,meqn,
     &     mout,mresult)
c     ==========================================================
c
c     # Check the consistency of physical values.
c     # An essential debugging tool for AMROC.
c
      implicit none
c
      integer meqn, mx, my, mz, mout
      double precision q(meqn,mx,my,mz)
      integer  lb(3), ub(3), lbr(3), ubr(3), shaper(3), 
     &     mresult, stride, imin(3), imax(3), d, i, j, k, getindx
c
       return
       end

<