Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020 #ifndef BITMAPSET_H
00021 #define BITMAPSET_H
00022
00023
00024
00025
00026
00027
00028 #define BITS_PER_BITMAPWORD 32
00029 typedef uint32 bitmapword;
00030 typedef int32 signedbitmapword;
00031
00032 typedef struct Bitmapset
00033 {
00034 int nwords;
00035 bitmapword words[1];
00036 } Bitmapset;
00037
00038
00039
00040 typedef enum
00041 {
00042 BMS_EQUAL,
00043 BMS_SUBSET1,
00044 BMS_SUBSET2,
00045 BMS_DIFFERENT
00046 } BMS_Comparison;
00047
00048
00049 typedef enum
00050 {
00051 BMS_EMPTY_SET,
00052 BMS_SINGLETON,
00053 BMS_MULTIPLE
00054 } BMS_Membership;
00055
00056
00057
00058
00059
00060
00061 extern Bitmapset *bms_copy(const Bitmapset *a);
00062 extern bool bms_equal(const Bitmapset *a, const Bitmapset *b);
00063 extern Bitmapset *bms_make_singleton(int x);
00064 extern void bms_free(Bitmapset *a);
00065
00066 extern Bitmapset *bms_union(const Bitmapset *a, const Bitmapset *b);
00067 extern Bitmapset *bms_intersect(const Bitmapset *a, const Bitmapset *b);
00068 extern Bitmapset *bms_difference(const Bitmapset *a, const Bitmapset *b);
00069 extern bool bms_is_subset(const Bitmapset *a, const Bitmapset *b);
00070 extern BMS_Comparison bms_subset_compare(const Bitmapset *a, const Bitmapset *b);
00071 extern bool bms_is_member(int x, const Bitmapset *a);
00072 extern bool bms_overlap(const Bitmapset *a, const Bitmapset *b);
00073 extern bool bms_nonempty_difference(const Bitmapset *a, const Bitmapset *b);
00074 extern int bms_singleton_member(const Bitmapset *a);
00075 extern int bms_num_members(const Bitmapset *a);
00076
00077
00078 extern BMS_Membership bms_membership(const Bitmapset *a);
00079 extern bool bms_is_empty(const Bitmapset *a);
00080
00081
00082
00083 extern Bitmapset *bms_add_member(Bitmapset *a, int x);
00084 extern Bitmapset *bms_del_member(Bitmapset *a, int x);
00085 extern Bitmapset *bms_add_members(Bitmapset *a, const Bitmapset *b);
00086 extern Bitmapset *bms_int_members(Bitmapset *a, const Bitmapset *b);
00087 extern Bitmapset *bms_del_members(Bitmapset *a, const Bitmapset *b);
00088 extern Bitmapset *bms_join(Bitmapset *a, Bitmapset *b);
00089
00090
00091 extern int bms_first_member(Bitmapset *a);
00092
00093
00094 extern uint32 bms_hash_value(const Bitmapset *a);
00095
00096 #endif