1: /* "$Id: general.h,v 1.7 2000/05/25 22:38:58 bsmith Exp $"; */ 6: /* 7: Defines the data structure used for the general index set 8: */ 9: #include src/vec/is/isimpl.h 10: #include petscsys.h 12: typedef struct { 13: int N; /* number of indices */ 14: int n; /* local number of indices */ 15: PetscTruth sorted; /* indicates the indices are sorted */ 16: int *idx; 17: } IS_General; 19: #endif