PSCF v1.2
cpu/RFieldComparison.h
1#ifndef PRDC_GPU_R_FIELD_COMPARISON_H
2#define PRDC_GPU_R_FIELD_COMPARISON_H
3
4/*
5* PSCF - Polymer Self-Consistent Field Theory
6*
7* Copyright 2016 - 2022, The Regents of the University of Minnesota
8* Distributed under the terms of the GNU General Public License.
9*/
10
11#include <pscf/math/FieldComparison.h>
12#include "RField.h"
13
14namespace Pscf {
15namespace Prdc {
16namespace Cpu {
17
18 using namespace Util;
19 using namespace Pscf;
20
26 template <int D>
27 class RFieldComparison : public FieldComparison< RField<D> >
28 {};
29
30 #ifndef PRDC_GPU_R_FIELD_COMPARISON_CPP
31 extern template class RFieldComparison<1>;
32 extern template class RFieldComparison<2>;
33 extern template class RFieldComparison<3>;
34 #endif
35
36} // namespace Pscf::Prdc::Gpu
37} // namespace Pscf::Prdc
38} // namespace Pscf
39#endif
Comparison of element-by-element differences between field arrays.
Comparator for fields in real-space (r-grid) format.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.