ScaMaC  0.8.2
A Scalable Matrix Collection
scamac_dof_bosons.h
Go to the documentation of this file.
1 
8 #ifndef SCAMAC_DOF_BOSONS_H
9 #define SCAMAC_DOF_BOSONS_H
10 
11 #include "scamac_error.h"
12 
13 /* quantum mechanical degree of freedom: conserved bosons */
14 
15 typedef struct {
16  /* number of sites */
17  int n_sites;
18  /* number of bosons */
19  int n_bosons;
20  /* maximal number of bosons per site */
21  int n_bosons_per_site;
22 
23  /* number of states */
24  ScamacIdx ns;
25 
26  /* count information */
27  ScamacIdx *cnt;
28 
29 } scamac_dof_bosons_st;
30 
31 typedef int scamac_rep_bosons_st;
32 
33 ScamacErrorCode scamac_dof_bosons_alloc(int n_sites, int n_bosons, int n_bosons_per_site, scamac_dof_bosons_st ** dof);
34 void scamac_dof_bosons_free(scamac_dof_bosons_st * dof);
35 
36 ScamacIdx scamac_dof_bosons_ns(const scamac_dof_bosons_st * dof);
37 
38 scamac_rep_bosons_st * scamac_rep_bosons_alloc(const scamac_dof_bosons_st *dof);
39 void scamac_rep_bosons_free(scamac_rep_bosons_st * rep);
40 
41 void scamac_rep_bosons_copy(const scamac_dof_bosons_st *dof, const scamac_rep_bosons_st * rep, scamac_rep_bosons_st * repcpy);
42 
43 ScamacErrorCode scamac_bosons_decode(const scamac_dof_bosons_st * dof, ScamacIdx idx, scamac_rep_bosons_st *rep);
44 ScamacIdx scamac_bosons_encode(const scamac_dof_bosons_st * dof, const scamac_rep_bosons_st *rep);
45 
46 /* operators */
47 double scamac_op_bosons_bdb (const scamac_dof_bosons_st * dof, const scamac_rep_bosons_st * rep, int ic);
48 double scamac_op_bosons_nn (const scamac_dof_bosons_st * dof, const scamac_rep_bosons_st * rep, int i, int j);
49 double scamac_op_bosons_bdibj(const scamac_dof_bosons_st * dof, scamac_rep_bosons_st * rep, int i, int j);
50 
51 
52 
53 
54 #endif /* SCAMAC_DOF_BOSONS_H */
ScaMaC data structure and macro definitions.