src/2d/dummy-routines/rpt2xx.f
c
c =====================================================
subroutine rpt2(ixy,maxm,meqn,mwaves,mbc,mx,
& ql,qr,maux,aux1,aux2,aux3,
& ilr,asdq,bmasdq,bpasdq)
c =====================================================
c
c # dummy subroutine for use when no transverse wave propagation
c # should be used.
c # If method(3)<=0 then this routine is never called, but its
c # existence is required.
c
implicit double precision (a-h,o-z)
dimension ql(1-mbc:maxm+mbc, meqn)
dimension qr(1-mbc:maxm+mbc, meqn)
dimension asdq(1-mbc:maxm+mbc, meqn)
dimension bmasdq(1-mbc:maxm+mbc, meqn)
dimension bpasdq(1-mbc:maxm+mbc, meqn)
dimension aux1(1-mbc:maxm+mbc, maux)
dimension aux2(1-mbc:maxm+mbc, maux)
dimension aux3(1-mbc:maxm+mbc, maux)
c
write(6,*) '*** Dummy function rpt2xx called.'
write(6,*) '*** Use appropriate rpt2 or set method(3)<=0.'
stop
end
<