int *colors PetscMalloc(...,&colors)
colors(i) = .... ISColoringCreate(...) How do I have to define the array colors in Fortran? I tried:Integer, allocatable :: colors(:) and allocate() instead of PetscMalloc
and Integer, pointer :: colors but neither worked. Thanks, Jonas
