/* This is the header file for functions that contain the generators of su(3) in the fundamental representation (Gell-Mann matrices). */ #ifndef su3_h #define su3_h #include #include typedef struct SU3_MAT { dcomplex su3m[4][4]; } su3_mat; su3_mat gell_mann_mat(int a); su3_mat su3_mul(su3_mat a, su3_mat b); #endif