~ubuntu-branches/ubuntu/trusty/gobject-introspection/trusty

« back to all changes in this revision

Viewing changes to girepository/cmph/chd_structs.h

  • Committer: Bazaar Package Importer
  • Author(s): Emilio Pozuelo Monfort
  • Date: 2011-03-22 00:32:36 UTC
  • mfrom: (1.4.1 upstream) (3.3.33 multiarch)
  • Revision ID: james.westby@ubuntu.com-20110322003236-4spdgfk1vai6xay1
Tags: 0.10.4-2
Upload to unstable.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#ifndef __CMPH_CHD_STRUCTS_H__
 
2
#define __CMPH_CHD_STRUCTS_H__
 
3
 
 
4
#include "chd_structs_ph.h"
 
5
#include "chd_ph.h"
 
6
#include "compressed_rank.h"
 
7
 
 
8
struct __chd_data_t
 
9
{
 
10
        cmph_uint32 packed_cr_size;
 
11
        cmph_uint8 * packed_cr; // packed compressed rank structure to control the number of zeros in a bit vector
 
12
        
 
13
        cmph_uint32 packed_chd_phf_size;
 
14
        cmph_uint8 * packed_chd_phf;
 
15
};
 
16
 
 
17
struct __chd_config_data_t
 
18
{       
 
19
        cmph_config_t *chd_ph;     // chd_ph algorithm must be used here
 
20
};
 
21
#endif