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