00001 00005 00006 00007 #ifndef _BITVECSET_H 00008 #define _BITVECSET_H 00009 00010 typedef struct { 00011 int max; 00012 int size; 00013 short *vector; 00014 } BV_Set ; 00015 00016 00017 #endif 00018