diff options
author | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-08-04 15:18:08 -0400 |
---|---|---|
committer | Joseph Hunkeler <jhunkeler@gmail.com> | 2021-08-04 15:18:08 -0400 |
commit | 70fd14e98bc476a84aef352eaf063cfcba44ab83 (patch) | |
tree | 2737f5c1c21c76824f49c6a1b9c7061952b646f5 /Crosscorr.f | |
parent | c396a4bc7a3282de9d2191de0e1076fec9df0783 (diff) | |
download | moog-70fd14e98bc476a84aef352eaf063cfcba44ab83.tar.gz |
Use modern equality operators
Diffstat (limited to 'Crosscorr.f')
-rwxr-xr-x | Crosscorr.f | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Crosscorr.f b/Crosscorr.f index 5e33d12..457c6e8 100755 --- a/Crosscorr.f +++ b/Crosscorr.f @@ -17,7 +17,7 @@ c****************************************************************************** xysum = 0. x2sum = 0. y2sum = 0. - if (ishift .ge. 0) then + if (ishift >= 0) then minpt = 1 maxpt = npx - ishift else |