PSCF v1.2
PropagatorTmpl.h
1#ifndef PSCF_PROPAGATOR_TMPL_H
2#define PSCF_PROPAGATOR_TMPL_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 <util/containers/GArray.h>
12
13namespace Pscf
14{
15
16 using namespace Util;
17
91 template <class TP>
93 {
94
95 public:
96
101
104
111
120 void setPartner(const TP& partner);
121
131 void addSource(const TP& source);
132
137
141
147 const TP& source(int id) const;
148
152 const TP& partner() const;
153
157 int directionId() const;
158
162 int nSource() const;
163
167 bool hasPartner() const;
168
172 bool isSolved() const;
173
177 bool isReady() const;
178
180
181 private:
182
184 int directionId_;
185
187 TP const * partnerPtr_;
188
190 GArray<TP const *> sourcePtrs_;
191
193 bool isSolved_;
194
195 };
196
197 // Inline member functions
198
199 /*
200 * Get the direction index.
201 */
202 template <class TP>
204 { return directionId_; }
205
206 /*
207 * Get the number of source propagators.
208 */
209 template <class TP>
211 { return sourcePtrs_.size(); }
212
213 /*
214 * Get a source propagator.
215 */
216 template <class TP>
217 inline const TP&
219 { return *(sourcePtrs_[id]); }
220
224 template <class TP>
225 inline
227 { return partnerPtr_; }
228
229 /*
230 * Is the computation of this propagator completed?
231 */
232 template <class TP>
234 { return isSolved_; }
235
236 // Noninline member functions
237
238 /*
239 * Constructor.
240 */
241 template <class TP>
243 : directionId_(-1),
244 partnerPtr_(0),
245 sourcePtrs_(),
246 isSolved_(false)
247 {}
248
249 /*
250 * Set the directionId.
251 */
252 template <class TP>
254 { directionId_ = directionId; }
255
256 /*
257 * Set the partner propagator.
258 */
259 template <class TP>
260 void PropagatorTmpl<TP>::setPartner(const TP& partner)
261 { partnerPtr_ = &partner; }
262
263 /*
264 * Add a source propagator to the list.
265 */
266 template <class TP>
267 void PropagatorTmpl<TP>::addSource(const TP& source)
268 { sourcePtrs_.append(&source); }
269
270 /*
271 * Get partner propagator.
272 */
273 template <class TP>
275 const
276 {
277 UTIL_CHECK(partnerPtr_);
278 return *partnerPtr_;
279 }
280
281 /*
282 * Mark this propagator as solved (true) or not (false).
283 */
284 template <class TP>
286 { isSolved_ = isSolved; }
287
288 /*
289 * Check if all source propagators are marked completed.
290 */
291 template <class TP>
293 {
294 for (int i=0; i < sourcePtrs_.size(); ++i) {
295 if (!sourcePtrs_[i]->isSolved()) {
296 return false;
297 }
298 }
299 return true;
300 }
301
302}
303#endif
Template for propagator classes.
void setIsSolved(bool isSolved)
Set the isSolved flag to true or false.
void addSource(const TP &source)
Add a propagator to the list of sources for this one.
const TP & partner() const
Get partner propagator.
const TP & source(int id) const
Get a source propagator.
void setDirectionId(int directionId)
Associate this propagator with a direction index.
bool isSolved() const
Has the modified diffusion equation been solved?
int directionId() const
Get direction index for this propagator.
bool hasPartner() const
Does this have a partner propagator?
bool isReady() const
Are all source propagators solved?
void setPartner(const TP &partner)
Set the partner of this propagator.
PropagatorTmpl()
Constructor.
int nSource() const
Number of source / prerequisite propagators.
An automatically growable array, analogous to a std::vector.
Definition GArray.h:34
int size() const
Return logical size of this array (i.e., current number of elements).
Definition GArray.h:455
#define UTIL_CHECK(condition)
Assertion macro suitable for serial or parallel production code.
Definition global.h:68
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.