PSCF v1.2
cpu/types.h
1#ifndef PRDC_CPU_TYPES_H
2#define PRDC_CPU_TYPES_H
3
4/*
5* PSCF Package - Polymer Self-Consistent Field
6*
7* Copyright 2016 - 2023, The Regents of the University of Minnesota
8* Distributed under the terms of the GNU General Public License.
9*/
10
11#include <fftw3.h>
12
13namespace Pscf {
14namespace Prdc {
15namespace Cpu {
16
20 typedef fftw_complex Complex;
21
25 typedef double Real;
26
27}
28}
29}
30#endif
double Real
Real number type used in CPU code that uses FFTW.
Definition cpu/types.h:25
fftw_complex Complex
Complex number type used in CPU code that uses FFTW.
Definition cpu/types.h:20
PSCF package top-level namespace.
Definition param_pc.dox:1