Skip to main content

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index] [List Home]
[photran] Debugging issue: viewing array contents


I have a small fortran program which compiles fine and can debug using Photran.

I'm using code similar to the following to allocate a 256 x 256 array of reals:

INTEGER, PARAMETER :: q = SELECTED_REAL_KIND(P = 8, R = 30)
REAL(KIND=q), ALLOCATABLE, DIMENSION(:,:) :: MyArray
ALLOCATE(MyArray(256, 256), STAT=alloc_error)

I am unable to view the contents of MyArray while debugging using Photran. Is this a known limitation or is there a way of viewing the contents of multidimensional arrays?

Many thanks
Don








Back to the top