Specifications

Visual Fortran Run-Time Errors Page 44 of 48
FOR$IOS_F6773. There is not enough memory space to hold the automatic data object.
Dynamic memory allocation is limited by several factors, including swap file size and
memory requirements of other applications that are running. If you encounter an
unexpectedly low limit, you might need to reset your virtual memory size through the
Windows Control Panel or redefine the swap file size. Allocated arrays that are no
longer needed should be deallocated.
An automatic data object is an object that is declared in a procedure subprogram or
interface, is not a dummy argument, and depends on a nonconstant expression. For
example:
SUBROUTINE EXAMPLE (N)
DIMENSION A (N, 5), B(10*N)
The arrays A and B in the example are automatic data objects.
729
severe (729): DEALLOCATE failure: ALLOCATABLE array is not ALLOCATED
FOR$IOS_F6774. It is illegal to DEALLOCATE an array that is not allocated. You
can check the allocation status of an array before deallocating with the ALLOCATED
function.
730
severe (730): Out of range: DIM argument to MINVAL has value ’dim’
FOR$IOS_F6775. The optional argument DIM specifies the dimension along which
minimum values are returned, and must be greater than or equal to 1 and less than or
equal to the number of dimensions in the array. That is, 1 <= DIM <= n, where n is the
number of dimensions in array.
731
severe (731): Out of range: DIM argument to MINVAL has value ’dim’ with ARRAY
of rank ’rank’
FOR$IOS_F6776. The optional argument DIM specifies the dimension along which
minimum values are returned, and must be greater than or equal to 1 and less than or
equal to the number of dimensions (rank) in the array. That is, 1 <= DIM <= n, where n
is the number of dimensions in array.
732
severe (732): P argument to MOD is double precision zero
FOR$IOS_F6777. MOD(A,P) is computed as A - INT(A/P) * P. So, P cannot be zero.
733
severe (733): P argument to MOD is integer zero
FOR$IOS_F6778. MOD(A,P) is computed as A - INT(A/P) * P. So, P cannot be zero.
734
severe (734): P argument to MOD is real zero