Initial commit
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
SUBROUTINE atimes(n,x,r,itrnsp)
|
||||
INTEGER n,itrnsp,ija,NMAX
|
||||
DOUBLE PRECISION x(n),r(n),sa
|
||||
PARAMETER (NMAX=1000)
|
||||
COMMON /mat/ sa(NMAX),ija(NMAX)
|
||||
CU USES dsprsax,dsprstx
|
||||
if (itrnsp.eq.0) then
|
||||
call dsprsax(sa,ija,x,r,n)
|
||||
else
|
||||
call dsprstx(sa,ija,x,r,n)
|
||||
endif
|
||||
return
|
||||
END
|
||||
Reference in New Issue
Block a user