PSCF v1.2
rpc/fts/montecarlo/McMove.h
1#ifndef RPC_MC_MOVE_H
2#define RPC_MC_MOVE_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
12#include <util/param/ParamComposite.h>
13#include <util/random/Random.h>
14#include <util/global.h>
15#include <util/misc/Timer.h>
16
17namespace Pscf {
18namespace Rpc
19{
20
21 using namespace Util;
22
23 template <int D> class System;
24 template <int D> class McSimulator;
25
35 template <int D>
36 class McMove : public ParamComposite
37 {
38
39 public:
40
46 McMove(McSimulator<D>& simulator);
47
53 virtual ~McMove();
54
60 virtual void readParameters(std::istream &in);
61
67 void setProbability(double probability);
68
78 virtual void setup();
79
102 virtual bool move();
103
108 virtual bool needsCc()
109 { return false; }
110
115 virtual bool needsDc()
116 { return false; }
117
121 virtual void outputTimers(std::ostream& out);
122
126 virtual void clearTimers();
127
128 // Accessor Functions
129
133 double probability() const;
134
138 long nAttempt() const;
139
143 long nAccept() const;
144
148 long nFail() const;
149
153 virtual void output();
154
155 protected:
156
160 void incrementNAttempt();
161
165 void incrementNAccept();
166
170 void incrementNFail();
171
175 System<D>& system();
176
181
185 Random& random();
186
190 void readProbability(std::istream& in);
191
202 virtual void attemptMove()
203 {};
204
207 Timer compressorTimer_;
208 Timer componentTimer_;
209 Timer hamiltonianTimer_;
210 Timer decisionTimer_;
211 Timer totalTimer_;
212
213 private:
214
216 McSimulator<D>* simulatorPtr_;
217
219 System<D>* systemPtr_;
220
222 Random *randomPtr_;
223
225 double probability_;
226
228 long nAttempt_;
229
231 long nAccept_;
232
234 long nFail_;
235
236 };
237
238 // Public inline methods
239
240 /*
241 * Return number of moves that have been attempted.
242 */
243 template <int D>
244 inline long McMove<D>::nAttempt() const
245 { return nAttempt_; }
246
247 /*
248 * Return number of moves that have been accepted.
249 */
250 template <int D>
251 inline long McMove<D>::nAccept() const
252 { return nAccept_; }
253
254 /*
255 * Return number of moves that fail to converge.
256 */
257 template <int D>
258 inline long McMove<D>::nFail() const
259 { return nFail_; }
260
261 // Protected inline methods
262
263 /*
264 * Increment the number of attempted moves.
265 */
266 template <int D>
268 { ++nAttempt_; }
269
270 /*
271 * Increment the number of accepted moves.
272 */
273 template <int D>
275 { ++nAccept_; }
276
277 /*
278 * Increment the number of fail moves.
279 */
280 template <int D>
282 { ++nFail_; }
283
284 /*
285 * Get parent System object.
286 */
287 template <int D>
289 { return *systemPtr_; }
290
291 /*
292 * Get parent McSimulator object.
293 */
294 template <int D>
296 { return *simulatorPtr_; }
297
298 /*
299 * Get Random number generator.
300 */
301 template <int D>
303 { return *randomPtr_; }
304
305 /*
306 * Get the probability.
307 */
308 template <int D>
309 inline double McMove<D>::probability() const
310 { return probability_; }
311
312 /*
313 * Set the probability.
314 */
315 template <int D>
316 inline void McMove<D>::setProbability(double probability)
317 { probability_ = probability; }
318
319 #ifndef RPC_MC_MOVE_TPP
320 // Suppress implicit instantiation
321 extern template class McMove<1>;
322 extern template class McMove<2>;
323 extern template class McMove<3>;
324 #endif
325
326}
327}
328#endif
McMove is an abstract base class for Monte Carlo moves.
void incrementNAccept()
Increment the number of accepted moves.
long nFail() const
Return number of moves that fail to converge.
double probability() const
Return probability for this McMove.
virtual void clearTimers()
Clear timers.
Timer attemptMoveTimer_
Timers for McMove.
virtual bool needsDc()
Decide whether dc fields need to be saved for move The default implementation is false.
Random & random()
Get Random number generator of parent System.
McMove(McSimulator< D > &simulator)
Constructor.
virtual bool needsCc()
Decide whether cc fields need to be saved for move The default implementation is false.
virtual void readParameters(std::istream &in)
Read required parameters from file.
System< D > & system()
Get parent System object.
McSimulator< D > & simulator()
Get parent McSimulator object.
void setProbability(double probability)
Set the probability for this McMove.
void incrementNAttempt()
Increment the number of attempted moves.
virtual void attemptMove()
Attempt unconstrained move.
virtual ~McMove()
Destructor.
long nAttempt() const
Return number of moves that have been attempted.
virtual bool move()
Generate, attempt, and accept or reject a Monte Carlo move.
virtual void outputTimers(std::ostream &out)
Log output timing results.
void readProbability(std::istream &in)
Read the probability from file.
void incrementNFail()
Increment the number of failed moves.
virtual void setup()
Setup before the beginning of each simulation run.
virtual void output()
Output statistics for this move (at the end of simulation)
long nAccept() const
Return number of moves that have been accepted.
Monte-Carlo simulation coordinator.
Main class for SCFT or PS-FTS simulation of one system.
Definition rpc/System.h:100
An object that can read multiple parameters from file.
Random number generator.
Definition Random.h:47
Wall clock timer.
Definition Timer.h:35
File containing preprocessor macros for error handling.
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.