PSCF v1.4.0
AmIteratorBasis.cu
1/*
2* PSCF - Polymer Self-Consistent Field
3*
4* Copyright 2015 - 2025, The Regents of the University of Minnesota
5* Distributed under the terms of the GNU General Public License.
6*/
7
8#include "AmIteratorBasis.h"
9#include <rpg/system/System.h>
10#include <rpg/solvers/Mixture.h>
11#include <rpg/field/Domain.h>
12#include <rpg/field/CFields.h>
13#include <rpg/field/WFields.h>
14#include <rpg/field/Mask.h>
15#include <pscf/cpu/VecOp.h>
16#include <pscf/cpu/Reduce.h>
17
18#include <rp/scft/iterator/AmIteratorBasis.tpp> // base class implementation
19
20// Constructor definition
21namespace Pscf {
22 namespace Rpg {
23
24 // Constructor
25 template <int D>
29
30 }
31}
32
33// Explicit instantiation definitions
34namespace Pscf {
35 template class AmIteratorTmpl< Rpg::Iterator<1>, DArray<double> >;
36 template class AmIteratorTmpl< Rpg::Iterator<2>, DArray<double> >;
37 template class AmIteratorTmpl< Rpg::Iterator<3>, DArray<double> >;
38 namespace Rp {
39 template class AmIteratorBasis<1, Rpg::Types<1> >;
40 template class AmIteratorBasis<2, Rpg::Types<2> >;
41 template class AmIteratorBasis<3, Rpg::Types<3> >;
42 }
43 namespace Rpg {
44 template class AmIteratorBasis<1>;
45 template class AmIteratorBasis<2>;
46 template class AmIteratorBasis<3>;
47 }
48}
Anderson mixing iterator with imposed space-group symmetry).
AmIteratorBasis(System< D > &system)
Constructor.
Main class, representing a complete physical system.
List of aliases for types used in the Rpg program-level namespace.
Dynamically allocatable contiguous array template.
Definition DArray.h:32
Class templates for real-valued periodic fields.
SCFT and PS-FTS with real periodic fields (GPU)
PSCF package top-level namespace.