/* "$Id: general.h,v 1.7 2000/05/25 22:38:58 bsmith Exp $"; */ #if !defined(__GENERAL_H) #define __GENERAL_H /* Defines the data structure used for the general index set */ #include "src/vec/is/isimpl.h" #include "petscsys.h" typedef struct { int N; /* number of indices */ int n; /* local number of indices */ PetscTruth sorted; /* indicates the indices are sorted */ int *idx; } IS_General; #endif