ISBlockGetIndicesF90
Accesses the elements of an index set from Fortran90. The users should call ISBlockRestoreIndicesF90() after having looked at the indices. The user should NOT change the indices.
Synopsis
ISBlockGetIndicesF90(IS x,{Scalar, pointer :: xx_v(:)},integer ierr)
Not
collective
Input Parameter
x -index set
Output Parameters
xx_v | - the Fortran90 pointer to the array
|
ierr | - error code
Example of Usage:
|
Scalar, pointer xx_v(:)
....
call ISBlockGetIndicesF90(x,xx_v,ierr)
a = xx_v(3)
call ISBlockRestoreIndicesF90(x,xx_v,ierr)
Notes
Not yet supported for all F90
compilers
See Also
ISBlockRestoreIndicesF90(), ISGetIndices(), ISRestoreIndices(),
ISRestoreIndices()
Keywords
IS, index set, get, indices, f90
Examples
src/is/examples/tutorials/ex3f90.F
Location: src/is/interface/index.c
IS and DA Index
Table of Contents