ScaMaC  0.8.2
A Scalable Matrix Collection
scamac_matrix_TopIns.h
1 /* *** *** *** *** *** *** *** *** *** *** */
2 /* autogenerated by ScaMaC_build_generator */
3 /* Fri, 24 May 2019 12:40:36 +0200 */
4 /* *** *** *** *** *** *** *** *** *** *** */
5 #ifndef SCAMAC_MATRIX_TOPINS_H
6 #define SCAMAC_MATRIX_TOPINS_H
7 
8 #include "scamac_internal.h"
9 #include "scamac_sparserow.h"
10 #include "scamac_option_inc.h"
11 #include "scamac_rng.h"
12 #include "scamac_dof_lattice.h"
13 
14 typedef struct {
15  int Lx;
16  int Ly;
17  int Lz;
18  double t;
19  double m;
20  double D1;
21  double D2;
22  double ranpot;
23  scamac_option_ty boundary_conditions;
24  scamac_rng_seed_ty seed;
25  int mx;
26  int my;
27  int mz;
28 } scamac_matrix_TopIns_params_st;
29 
30 typedef struct {
31  ScamacIdx ns;
32  ScamacIdx maxnzrow;
33  scamac_dof_lattice_cubic_st dof;
34 } scamac_matrix_TopIns_tables_st;
35 
36 typedef struct {
37  scamac_ransrc_st * rng;
38 } scamac_matrix_TopIns_work_st;
39 
40 ScamacErrorCode scamac_matrix_TopIns_check(const scamac_matrix_TopIns_params_st * par, char ** desc);
41 ScamacErrorCode scamac_matrix_TopIns_tables_create(const scamac_matrix_TopIns_params_st * par, scamac_matrix_TopIns_tables_st ** tab, scamac_info_st * info);
42 ScamacErrorCode scamac_matrix_TopIns_tables_destroy(scamac_matrix_TopIns_tables_st * tab);
43 ScamacErrorCode scamac_matrix_TopIns_work_alloc(const scamac_matrix_TopIns_params_st * par, const scamac_matrix_TopIns_tables_st * tab, scamac_matrix_TopIns_work_st ** ws);
44 ScamacErrorCode scamac_matrix_TopIns_work_free(scamac_matrix_TopIns_work_st * ws);
45 ScamacErrorCode scamac_matrix_TopIns_generate_row(const scamac_matrix_TopIns_params_st * par, const scamac_matrix_TopIns_tables_st * tab, scamac_matrix_TopIns_work_st * ws, ScamacIdx irow, ScamacFlag flag, scamac_sparserow_cplx_st * row);
46 
47 #endif /* SCAMAC_MATRIX_TOPINS_H */
Internal types and (macro) definitions.