Intel® Fortran Compiler
Build applications that can scale for the future with optimized code designed for Intel® Xeon® and compatible processors.
29439 Discussions

Help Required, Can't Intrepret Error

naveed_ahmed
Beginner
834 Views
Kindly help me in understanding this error, what could be the possible cause?

%FOR-E-ADJARRDIM, adjustable array dimension error
%TRACE-E-TRACEBACK, symbolic stack dump follows

It is occuring at line 173, a subroutine call.

Thanks
Naveed
0 Kudos
1 Reply
james1
Beginner
834 Views
It basically means the dimensions on the subroutine's adjustable array doesn't makes sense, for example if you

integer array(10), size
call sub (array, size)

and sub is declared as

subroutine sub (array, size)
integer array(size), size
...

If you do something like set size to zero or something huge you might see this error.

James
0 Kudos
Reply