We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
In the compiling phase, a lot of messages were displayed. The last message looked like this:
IRI-2023-May/igrf.for:315:15: 296 | DO 3 N=3,3333 | 2 ...... 315 | 4 T=(Z-P(3,N-1))/STEP | 1 Warning: Array reference at (1) out of bounds (3332 > 100) in loop beginning at (2)
The size of array P is defined by line 207:
207 DIMENSION V(3),U(3,3),P(8,100),SP(3)
Array P was accessed in this fashion:
298 P(1,N)=P(1,N-1)+STEP12*(5.*P(4,N)+8.*P(4,N-1)-P(4,N-2))
The "Do" loop upper limit should be 100, not 3333.
The text was updated successfully, but these errors were encountered:
No branches or pull requests
In the compiling phase, a lot of messages were displayed. The last message looked like this:
The size of array P is defined by line 207:
Array P was accessed in this fashion:
The "Do" loop upper limit should be 100, not 3333.
The text was updated successfully, but these errors were encountered: