mirror of
https://github.com/saitohirga/WSJT-X.git
synced 2024-11-25 13:48:42 -05:00
Silence compiler warnings; reformmat some source code.
This commit is contained in:
parent
d4d37c49ab
commit
d5e92202d0
@ -33,6 +33,7 @@ do j=1,M
|
|||||||
enddo
|
enddo
|
||||||
|
|
||||||
ncnt=0
|
ncnt=0
|
||||||
|
nclast=0
|
||||||
|
|
||||||
do iter=0,maxiterations
|
do iter=0,maxiterations
|
||||||
|
|
||||||
|
@ -102,7 +102,7 @@ contains
|
|||||||
if(nsubmode.ge.100) then
|
if(nsubmode.ge.100) then
|
||||||
! This is QRA64 mode
|
! This is QRA64 mode
|
||||||
mode64=2**(nsubmode-100)
|
mode64=2**(nsubmode-100)
|
||||||
call qra64a(dd,npts,nutc,nf1,nf2,nfqso,ntol,mode64,minsync,ndepth, &
|
call qra64a(dd,npts,nf1,nf2,nfqso,ntol,mode64,minsync,ndepth, &
|
||||||
emedelay,mycall,hiscall,hisgrid,sync,nsnr,dtx,nfreq,decoded,nft)
|
emedelay,mycall,hiscall,hisgrid,sync,nsnr,dtx,nfreq,decoded,nft)
|
||||||
if (associated(this%callback)) then
|
if (associated(this%callback)) then
|
||||||
ndrift=0
|
ndrift=0
|
||||||
|
@ -1,27 +1,27 @@
|
|||||||
subroutine osd128_90(llr,apmask,ndeep,message77,cw,nhardmin,dmin)
|
subroutine osd128_90(llr,apmask,ndeep,message77,cw,nhardmin,dmin)
|
||||||
!
|
|
||||||
! An ordered-statistics decoder for the (128,90) code.
|
|
||||||
!
|
|
||||||
integer, parameter:: N=128, K=90, M=N-K
|
|
||||||
integer*1 apmask(N),apmaskr(N)
|
|
||||||
integer*1 gen(K,N)
|
|
||||||
integer*1 genmrb(K,N),g2(N,K)
|
|
||||||
integer*1 temp(K),m0(K),me(K),mi(K),misub(K),e2sub(N-K),e2(N-K),ui(N-K)
|
|
||||||
integer*1 r2pat(N-K)
|
|
||||||
integer indices(N),nxor(N)
|
|
||||||
integer*1 cw(N),ce(N),c0(N),hdec(N)
|
|
||||||
integer*1 decoded(K)
|
|
||||||
integer*1 message77(77)
|
|
||||||
integer indx(N)
|
|
||||||
real llr(N),rx(N),absrx(N)
|
|
||||||
|
|
||||||
include "ldpc_128_90_generator.f90"
|
! Ordered-statistics decoder for the (128,90) code.
|
||||||
|
|
||||||
logical first,reset
|
integer, parameter:: N=128, K=90, M=N-K
|
||||||
data first/.true./
|
integer*1 apmask(N),apmaskr(N)
|
||||||
save first,gen
|
integer*1 gen(K,N)
|
||||||
|
integer*1 genmrb(K,N),g2(N,K)
|
||||||
|
integer*1 temp(K),m0(K),me(K),mi(K),misub(K),e2sub(N-K),e2(N-K),ui(N-K)
|
||||||
|
integer*1 r2pat(N-K)
|
||||||
|
integer indices(N),nxor(N)
|
||||||
|
integer*1 cw(N),ce(N),c0(N),hdec(N)
|
||||||
|
integer*1 decoded(K)
|
||||||
|
integer*1 message77(77)
|
||||||
|
integer indx(N)
|
||||||
|
real llr(N),rx(N),absrx(N)
|
||||||
|
|
||||||
if( first ) then ! fill the generator matrix
|
include "ldpc_128_90_generator.f90"
|
||||||
|
|
||||||
|
logical first,reset
|
||||||
|
data first/.true./
|
||||||
|
save first,gen
|
||||||
|
|
||||||
|
if( first ) then ! fill the generator matrix
|
||||||
gen=0
|
gen=0
|
||||||
do i=1,M
|
do i=1,M
|
||||||
do j=1,23
|
do j=1,23
|
||||||
@ -37,29 +37,34 @@ if( first ) then ! fill the generator matrix
|
|||||||
do irow=1,K
|
do irow=1,K
|
||||||
gen(irow,irow)=1
|
gen(irow,irow)=1
|
||||||
enddo
|
enddo
|
||||||
first=.false.
|
first=.false.
|
||||||
endif
|
endif
|
||||||
|
|
||||||
rx=llr
|
rx=llr
|
||||||
apmaskr=apmask
|
apmaskr=apmask
|
||||||
|
d1=0.
|
||||||
|
ntheta=0
|
||||||
|
npre1=0
|
||||||
|
npre2=0
|
||||||
|
nt=0
|
||||||
|
|
||||||
! Hard decisions on the received word.
|
! Hard decisions on the received word.
|
||||||
hdec=0
|
hdec=0
|
||||||
where(rx .ge. 0) hdec=1
|
where(rx .ge. 0) hdec=1
|
||||||
|
|
||||||
! Use magnitude of received symbols as a measure of reliability.
|
! Use magnitude of received symbols as a measure of reliability.
|
||||||
absrx=abs(rx)
|
absrx=abs(rx)
|
||||||
call indexx(absrx,N,indx)
|
call indexx(absrx,N,indx)
|
||||||
|
|
||||||
! Re-order the columns of the generator matrix in order of decreasing reliability.
|
! Re-order columns of generator matrix in order of decreasing reliability.
|
||||||
do i=1,N
|
do i=1,N
|
||||||
genmrb(1:K,i)=gen(1:K,indx(N+1-i))
|
genmrb(1:K,i)=gen(1:K,indx(N+1-i))
|
||||||
indices(i)=indx(N+1-i)
|
indices(i)=indx(N+1-i)
|
||||||
enddo
|
enddo
|
||||||
|
|
||||||
! Do gaussian elimination to create a generator matrix with the most reliable
|
! Do gaussian elimination to create a generator matrix with the most reliable
|
||||||
! received bits in positions 1:K in order of decreasing reliability (more or less).
|
! received bits in positions 1:K in order of decreasing reliability (more or less).
|
||||||
do id=1,K ! diagonal element indices
|
do id=1,K ! diagonal element indices
|
||||||
do icol=id,K+20 ! The 20 is ad hoc - beware
|
do icol=id,K+20 ! The 20 is ad hoc - beware
|
||||||
iflag=0
|
iflag=0
|
||||||
if( genmrb(id,icol) .eq. 1 ) then
|
if( genmrb(id,icol) .eq. 1 ) then
|
||||||
@ -80,9 +85,9 @@ do id=1,K ! diagonal element indices
|
|||||||
exit
|
exit
|
||||||
endif
|
endif
|
||||||
enddo
|
enddo
|
||||||
enddo
|
enddo
|
||||||
|
|
||||||
g2=transpose(genmrb)
|
g2=transpose(genmrb)
|
||||||
|
|
||||||
! The hard decisions for the K MRB bits define the order 0 message, m0.
|
! The hard decisions for the K MRB bits define the order 0 message, m0.
|
||||||
! Encode m0 using the modified generator matrix to find the "order 0" codeword.
|
! Encode m0 using the modified generator matrix to find the "order 0" codeword.
|
||||||
@ -90,58 +95,58 @@ g2=transpose(genmrb)
|
|||||||
! codewords. Return the member of the list that has the smallest Euclidean
|
! codewords. Return the member of the list that has the smallest Euclidean
|
||||||
! distance to the received word.
|
! distance to the received word.
|
||||||
|
|
||||||
hdec=hdec(indices) ! hard decisions from received symbols
|
hdec=hdec(indices) ! hard decisions from received symbols
|
||||||
m0=hdec(1:K) ! zero'th order message
|
m0=hdec(1:K) ! zero'th order message
|
||||||
absrx=absrx(indices)
|
absrx=absrx(indices)
|
||||||
rx=rx(indices)
|
rx=rx(indices)
|
||||||
apmaskr=apmaskr(indices)
|
apmaskr=apmaskr(indices)
|
||||||
|
|
||||||
call mrbencode90(m0,c0,g2,N,K)
|
call mrbencode90(m0,c0,g2,N,K)
|
||||||
nxor=ieor(c0,hdec)
|
nxor=ieor(c0,hdec)
|
||||||
nhardmin=sum(nxor)
|
nhardmin=sum(nxor)
|
||||||
dmin=sum(nxor*absrx)
|
dmin=sum(nxor*absrx)
|
||||||
|
|
||||||
cw=c0
|
cw=c0
|
||||||
ntotal=0
|
ntotal=0
|
||||||
nrejected=0
|
nrejected=0
|
||||||
|
|
||||||
if(ndeep.eq.0) goto 998 ! norder=0
|
if(ndeep.eq.0) goto 998 ! norder=0
|
||||||
if(ndeep.gt.5) ndeep=5
|
if(ndeep.gt.5) ndeep=5
|
||||||
if( ndeep.eq. 1) then
|
if( ndeep.eq. 1) then
|
||||||
nord=1
|
nord=1
|
||||||
npre1=0
|
npre1=0
|
||||||
npre2=0
|
npre2=0
|
||||||
nt=12
|
nt=12
|
||||||
ntheta=3
|
ntheta=3
|
||||||
elseif(ndeep.eq.2) then
|
elseif(ndeep.eq.2) then
|
||||||
nord=1
|
nord=1
|
||||||
npre1=1
|
npre1=1
|
||||||
npre2=0
|
npre2=0
|
||||||
nt=18
|
nt=18
|
||||||
ntheta=4
|
ntheta=4
|
||||||
elseif(ndeep.eq.3) then
|
elseif(ndeep.eq.3) then
|
||||||
nord=1
|
nord=1
|
||||||
npre1=1
|
npre1=1
|
||||||
npre2=0
|
npre2=0
|
||||||
nt=12
|
nt=12
|
||||||
ntheta=4
|
ntheta=4
|
||||||
elseif(ndeep.eq.4) then
|
elseif(ndeep.eq.4) then
|
||||||
nord=1
|
nord=1
|
||||||
npre1=1
|
npre1=1
|
||||||
npre2=1
|
npre2=1
|
||||||
nt=12
|
nt=12
|
||||||
ntheta=4
|
ntheta=4
|
||||||
ntau=15
|
ntau=15
|
||||||
elseif(ndeep.eq.5) then
|
elseif(ndeep.eq.5) then
|
||||||
nord=1
|
nord=1
|
||||||
npre1=1
|
npre1=1
|
||||||
npre2=1
|
npre2=1
|
||||||
nt=12
|
nt=12
|
||||||
ntheta=4
|
ntheta=4
|
||||||
ntau=5
|
ntau=5
|
||||||
endif
|
endif
|
||||||
|
|
||||||
do iorder=1,nord
|
do iorder=1,nord
|
||||||
misub(1:K-iorder)=0
|
misub(1:K-iorder)=0
|
||||||
misub(K-iorder+1:K)=1
|
misub(K-iorder+1:K)=1
|
||||||
iflag=K-iorder+1
|
iflag=K-iorder+1
|
||||||
@ -189,9 +194,9 @@ do iorder=1,nord
|
|||||||
! when the last pattern with weight iorder has been generated.
|
! when the last pattern with weight iorder has been generated.
|
||||||
call nextpat90(misub,k,iorder,iflag)
|
call nextpat90(misub,k,iorder,iflag)
|
||||||
enddo
|
enddo
|
||||||
enddo
|
enddo
|
||||||
|
|
||||||
if(npre2.eq.1) then
|
if(npre2.eq.1) then
|
||||||
reset=.true.
|
reset=.true.
|
||||||
ntotal=0
|
ntotal=0
|
||||||
do i1=K,1,-1
|
do i1=K,1,-1
|
||||||
@ -240,22 +245,22 @@ if(npre2.eq.1) then
|
|||||||
enddo
|
enddo
|
||||||
call nextpat90(misub,K,nord,iflag)
|
call nextpat90(misub,K,nord,iflag)
|
||||||
enddo
|
enddo
|
||||||
endif
|
endif
|
||||||
|
|
||||||
998 continue
|
998 continue
|
||||||
! Re-order the codeword to [message bits][parity bits] format.
|
! Re-order the codeword to [message bits][parity bits] format.
|
||||||
cw(indices)=cw
|
cw(indices)=cw
|
||||||
hdec(indices)=hdec
|
hdec(indices)=hdec
|
||||||
decoded=cw(1:K)
|
decoded=cw(1:K)
|
||||||
call chkcrc13a(decoded,nbadcrc)
|
call chkcrc13a(decoded,nbadcrc)
|
||||||
message77=decoded(1:77)
|
message77=decoded(1:77)
|
||||||
if(nbadcrc.eq.1) nhardmin=-nhardmin
|
if(nbadcrc.eq.1) nhardmin=-nhardmin
|
||||||
|
|
||||||
return
|
return
|
||||||
end subroutine osd128_90
|
end subroutine osd128_90
|
||||||
|
|
||||||
subroutine mrbencode90(me,codeword,g2,N,K)
|
subroutine mrbencode90(me,codeword,g2,N,K)
|
||||||
integer*1 me(K),codeword(N),g2(N,K)
|
integer*1 me(K),codeword(N),g2(N,K)
|
||||||
! fast encoding for low-weight test patterns
|
! fast encoding for low-weight test patterns
|
||||||
codeword=0
|
codeword=0
|
||||||
do i=1,K
|
do i=1,K
|
||||||
@ -263,7 +268,7 @@ integer*1 me(K),codeword(N),g2(N,K)
|
|||||||
codeword=ieor(codeword,g2(1:N,i))
|
codeword=ieor(codeword,g2(1:N,i))
|
||||||
endif
|
endif
|
||||||
enddo
|
enddo
|
||||||
return
|
return
|
||||||
end subroutine mrbencode90
|
end subroutine mrbencode90
|
||||||
|
|
||||||
subroutine nextpat90(mi,k,iorder,iflag)
|
subroutine nextpat90(mi,k,iorder,iflag)
|
||||||
@ -368,4 +373,3 @@ subroutine fetchit90(reset,e2,ntau,i1,i2)
|
|||||||
lastpat=ipat
|
lastpat=ipat
|
||||||
return
|
return
|
||||||
end subroutine fetchit90
|
end subroutine fetchit90
|
||||||
|
|
||||||
|
@ -1,4 +1,4 @@
|
|||||||
subroutine qra64a(dd,npts,nutc,nf1,nf2,nfqso,ntol,mode64,minsync,ndepth, &
|
subroutine qra64a(dd,npts,nf1,nf2,nfqso,ntol,mode64,minsync,ndepth, &
|
||||||
emedelay,mycall_12,hiscall_12,hisgrid_6,sync,nsnr,dtx,nfreq,decoded,nft)
|
emedelay,mycall_12,hiscall_12,hisgrid_6,sync,nsnr,dtx,nfreq,decoded,nft)
|
||||||
|
|
||||||
use packjt
|
use packjt
|
||||||
@ -151,8 +151,5 @@ subroutine qra64a(dd,npts,nutc,nf1,nf2,nfqso,ntol,mode64,minsync,ndepth, &
|
|||||||
endif
|
endif
|
||||||
call timer('qra64a ',1)
|
call timer('qra64a ',1)
|
||||||
|
|
||||||
! write(71,3001) nutc,dtx,f0,sync,sync2,width,minsync,decoded
|
|
||||||
!3001 format(i4.4,f7.2,4f8.1,i3,2x,a22)
|
|
||||||
|
|
||||||
return
|
return
|
||||||
end subroutine qra64a
|
end subroutine qra64a
|
||||||
|
@ -39,7 +39,7 @@ program qratest
|
|||||||
if(nfqso0.ne.-1) nfqso=nfqso0
|
if(nfqso0.ne.-1) nfqso=nfqso0
|
||||||
if(ntol0.ne.-1) ntol=ntol0
|
if(ntol0.ne.-1) ntol=ntol0
|
||||||
|
|
||||||
call qra64a(dd,npts,nutc,nf1,nf2,nfqso,ntol,mode64,minsync,ndepth, &
|
call qra64a(dd,npts,nf1,nf2,nfqso,ntol,mode64,minsync,ndepth, &
|
||||||
mycall,hiscall,hisgrid,sync,nsnr,dtx,nfreq,decoded,nft)
|
mycall,hiscall,hisgrid,sync,nsnr,dtx,nfreq,decoded,nft)
|
||||||
c='a'
|
c='a'
|
||||||
if(mode64.eq.2) c='b'
|
if(mode64.eq.2) c='b'
|
||||||
|
Loading…
Reference in New Issue
Block a user