Skip to content

Commit

Permalink
markabs
Browse files Browse the repository at this point in the history
  • Loading branch information
frajaroco authored Jul 19, 2024
1 parent 47759f5 commit b0436b1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/kmmrcore.f
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

subroutine kmmrcore(x,y,txy,n,s,ns,ks,hs,kmmr)

implicit double precision (a-h,o-z)
implicit real*8(a-h,o-z)

integer i,j,iu,n,ns,ks
double precision wij,vij,hs,kerns,krm,krn,kmmr,x,y,txy
Expand All @@ -26,7 +26,7 @@ subroutine kmmrcore(x,y,txy,n,s,ns,ks,hs,kmmr)
do j=1,n
if (j.ne.i) then
hij=sqrt(((xi-x(j))**two)+((yi-y(j))**two))
mij=abs(ti*txy(j))
mij=ti*txy(j)
if (ks(1).eq.1) then
kerns=boxkernel((s(iu)-hij)/hs,hs)
else if (ks(2).eq.1) then
Expand Down

0 comments on commit b0436b1

Please sign in to comment.