HiRep 0.1
Loading...
Searching...
No Matches
mre.h
1#ifndef MRE_H
2#define MRE_H
3
4#include "spinor_field.h"
5#include "Inverters/linear_solvers.h"
6
7#ifdef __cplusplus
8extern "C" {
9#endif
10
11/* functions and structures for the MRE algorithm */
12typedef struct mre_par {
13 spinor_field *s[2];
14 int num[2];
15 int max;
16 int init;
17} mre_par;
18
19void mre_guess(mre_par *, int, spinor_field *, spinor_operator, spinor_field *);
20void mre_store(mre_par *, int, spinor_field *);
21void mre_init(mre_par *, int, double);
22
23#ifdef __cplusplus
24}
25#endif
26#endif //MRE_H
The elementary site structures defined in suN.h are used in this file to define field structures that...
Definition mre.h:12
Spinor field array containing SU(N_f) spinors in chosen fermion representation.
Definition spinor_field.h:189