ScaMaC  0.8.2
A Scalable Matrix Collection
scamac_lut.h
Go to the documentation of this file.
1 
8 #ifndef SCAMAC_LUT_H
9 #define SCAMAC_LUT_H
10 
11 #include <stdbool.h>
12 
13 #include "scamac_error.h"
14 #include "scamac_inttypes.h"
15 
16 /* _L_ook_U_p _T_ables (LUT)
17  *
18  */
19 
20 // return total number of possibilites.
21 // return negative value, if overflow occurs.
22 ScamacErrorCode scamac_lut_construct(bool ineq, int n, int m, int s, ScamacIdx * ns, ScamacIdx ** lut);
23 
24 ScamacIdx scamac_lut_encode(bool ineq, int n, int s, ScamacIdx * cnt, const int * x);
25 void scamac_lut_decode(bool ineq, int n, int s, ScamacIdx * cnt, ScamacIdx idx, int * x);
26 
27 /* for fermions or spins (sz=const): fixed s after construction, ineq = 0, m =1 (i.e, x[i] = 0,1) */
28 
29 ScamacErrorCode scamac_lut_onezero_construct(int n, int s, ScamacIdx * ns, ScamacIdx ** lut);
30 ScamacIdx scamac_lut_onezero_encode(int n, int s, ScamacIdx * cnt, const int *x);
31 void scamac_lut_onezero_decode(int n, int s, ScamacIdx * cnt, ScamacIdx idx, int * x);
32 
33 #endif /* SCAMAC_LUT_H */
ScaMaC index/integer types.
ScaMaC data structure and macro definitions.