PSCF v1.1
pspc/field/RFieldComparison.h
1#ifndef PSPC_R_FIELD_COMPARISON_H
2#define PSPC_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 Pspc {
16
17 using namespace Util;
18
24 template <int D>
25 class RFieldComparison : public FieldComparison< RField<D> >
26 {};
27
28 #ifndef PSPC_R_FIELD_COMPARISON_CPP
29 extern template class RFieldComparison<1>;
30 extern template class RFieldComparison<2>;
31 extern template class RFieldComparison<3>;
32 #endif
33
34} // namespace Pspc
35} // namespace Pscf
36#endif
Comparison of element-by-element differences between field arrays.
Comparator for fields in real-space (r-grid) format.
C++ namespace for polymer self-consistent field theory (PSCF).
Utility classes for scientific computation.
Definition: accumulators.mod:1