CHROMA
Main Page
Modules
Namespaces
Namespace List
Namespace Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Variables
_
a
b
c
d
e
f
g
i
k
l
m
n
o
p
q
r
s
t
u
z
Typedefs
a
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
c
e
f
g
h
m
o
p
q
r
s
t
v
w
Enumerator
a
b
c
d
e
f
g
h
i
k
m
n
o
p
q
r
s
t
u
w
z
Classes
Class List
Class Index
Class Hierarchy
Class Members
All
:
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
~
Functions
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
z
~
Variables
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
b
c
d
e
f
g
h
i
l
m
n
o
p
q
r
s
t
u
v
w
Enumerations
Enumerator
e
h
i
k
r
s
t
v
Related Functions
:
a
g
h
i
l
o
p
r
s
t
u
Files
File List
File Members
All
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Functions
_
a
b
c
d
e
f
g
h
i
k
l
m
o
p
q
r
s
t
u
v
w
z
Variables
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
x
y
z
Typedefs
_
e
l
m
p
q
s
t
u
Enumerations
Enumerator
c
e
f
g
h
l
n
o
s
t
w
Macros
_
a
b
c
d
e
f
g
h
i
j
k
l
m
n
o
p
q
r
s
t
u
v
w
y
z
lib
update
molecdyn
monomial
remez.h
Go to the documentation of this file.
1
// -*- C++ -*-
2
/*! \file
3
* \brief Redirector for Remez algorithm for finding nth roots
4
*/
5
6
#ifndef __remez_h__
7
#define __remez_h__
8
9
#include "
chroma_config.h
"
10
11
#ifdef BUILD_GMP_REMEZ
// If GMP is defined
12
13
#include "
remez_gmp.h
"
14
15
// The following is an ifdef lis that switches in different
16
// versions of the Remez implementation
17
18
// GMP (Gnu Multi-Precision) version
19
namespace
Chroma
20
{
21
/*! @ingroup monomial */
22
typedef
RemezGMP
Remez
;
23
}
24
25
#else
26
27
#include "
remez_stub.h
"
28
29
// Dummy version
30
namespace
Chroma
31
{
32
/*! @ingroup monomial */
33
typedef
RemezStub
Remez
;
34
}
35
36
#endif
// ifdef GMP
37
38
#endif
// include guard
39
40
41
chroma_config.h
Chroma::RemezStub
Dummy class for case when gmp is not present.
Definition:
remez_stub.h:20
Chroma::Remez
RemezStub Remez
Definition:
remez.h:33
Chroma
Asqtad Staggered-Dirac operator.
Definition:
klein_gord.cc:10
remez_gmp.h
Remez algorithm for finding nth roots.
remez_stub.h
Remez algorithm for finding nth roots.
Generated by
1.9.1