summaryrefslogtreecommitdiff
path: root/sa-extract/cveb.pxd
blob: 8967f8e39fd8395b52156b340936ca44f4d92c9b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
cdef struct _VEB:
	int top_universe_size
	int num_bottom_bits
	int max_val
	int min_val
	int size
	void* top
	void** bottom


cdef class VEB:
	cdef _VEB* veb
	cdef int _findsucc(self, int i)
	cdef int _insert(self, int i)
	cdef int _first(self)