CHROMA
remez_coeff.h
Go to the documentation of this file.
1 // -*- C++ -*-
2 /*! \file
3  * \brief Remez algorithm coefficients
4  */
5 
6 #ifndef __remez_coeff_h__
7 #define __remez_coeff_h__
8 
9 #include "chromabase.h"
10 
11 namespace Chroma
12 {
13  //! Convenient structure to package Remez coeffs
14  /*! @ingroup monomial
15  *
16  * f(x) = norm + \sum_i res[i]/(x+pole[i])
17  */
18  struct RemezCoeff_t
19  {
20  multi1d<Real> res;
21  multi1d<Real> pole;
22  Real norm;
23  };
24 } // namespace Chroma
25 
26 #endif // include guard
Primary include file for CHROMA library code.
Asqtad Staggered-Dirac operator.
Definition: klein_gord.cc:10
Convenient structure to package Remez coeffs.
Definition: remez_coeff.h:19
multi1d< Real > pole
Definition: remez_coeff.h:21
multi1d< Real > res
Definition: remez_coeff.h:20