GLAC  1.0
taylor2exp.h
Go to the documentation of this file.
1 
13 #ifndef TAYLOR2EXP_H
14 #define TAYLOR2EXP_H
15 
16 #include "su3exp.h"
17 
18 class Taylor2Exp : public SU3Exp
19 {
20 private:
21  SU3 I, QSquared;
22 public:
23  Taylor2Exp();
24  SU3 exp(SU3 Q);
25 };
26 
27 #endif // TAYLOREXP_H
SU3 matrix exponentiation method that uses the method from https://journals.aps.org/prd/abstract/10....
Definition: su3exp.h:18
Taylor2Exp()
Definition: taylor2exp.cpp:3
class for holding matrices.
Definition: su3.h:18
SU3 exp(SU3 Q)
Definition: taylor2exp.cpp:8
Taylor expansion of second order.
Definition: taylor2exp.h:18