Topic: Watching structured-data dynamic array variables
Is it intended that SF's debugger should be able to display the contents of the first few values of dynamic arrays in data structures? I ask, because when I seem to be finding it can't display these.
For example, I have the following declarations:
Type :: MEMBER
INTEGER :: NODE1, NODE2
INTEGER :: MTyp
LOGICAL :: Released(6)
LOGICAL :: StiffsStored
REAL*8 :: LStiff(21)
REAL*8 :: GStiff(21)
CHARACTER(24) :: Desc
END TYPE
TYPE(MEMBER), ALLOCATABLE :: MEMB(:)
During debugging, I am finding, for example, if I highlight the code string, MEMB(1)%LStiff(4), then hover the mouse pointer over the highlighted selection, the debugger displays a garbage value for that array variable element. I am nearly sure that this is not because the array element in fact contains garbage (though I could be mistaken). Should the debugger in fact be managing to display this information?
---
John