PSCF v1.2
rpc/fts/compressor/Compressor.h
1#ifndef RPC_COMPRESSOR_H
2#define RPC_COMPRESSOR_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/param/ParamComposite.h> // base class
12#include <util/global.h>
13
14namespace Pscf {
15namespace Rpc
16{
17
18 template <int D> class System;
19
20 using namespace Util;
21
27 template <int D>
28 class Compressor : public ParamComposite
29 {
30
31 public:
32
38 Compressor(System<D>& system);
39
44
50 virtual int compress() = 0;
51
57 virtual void outputTimers(std::ostream& out) = 0;
58
62 virtual void clearTimers() = 0;
63
67 int mdeCounter();
68
69 protected:
70
74 System<D> const & system() const
75 {
76 UTIL_ASSERT(sysPtr_);
77 return *sysPtr_;
78 }
79
84 {
85 UTIL_ASSERT(sysPtr_);
86 return *sysPtr_;
87 }
88
93
94 private:
95
97 System<D>* sysPtr_;
98
99 };
100
101 // Member functions
102
103 // Constructor
104 template <int D>
106 : mdeCounter_(0),
107 sysPtr_(&system)
108 { setClassName("Compressor"); }
109
110 // Destructor
111 template <int D>
114
115 // Get number of times MDE has been solved.
116 template <int D>
118 { return mdeCounter_; }
119
120} // namespace Rpc
121} // namespace Pscf
122#endif
System< D > const & system() const
Return const reference to parent system.
System< D > & system()
Return non-const reference to parent system.
virtual void outputTimers(std::ostream &out)=0
Output report of timing results to stream.
Compressor(System< D > &system)
Constructor.
virtual void clearTimers()=0
Clear timers.
int mdeCounter_
Count how many times MDE has been solved.
int mdeCounter()
Get the number of times the MDE has been solved.
virtual int compress()=0
Iterate Langrange multiplier field.
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.
void setClassName(const char *className)
Set class name string.
File containing preprocessor macros for error handling.
#define UTIL_ASSERT(condition)
Assertion macro suitable for debugging serial or parallel code.
Definition global.h:75
PSCF package top-level namespace.
Definition param_pc.dox:1
Utility classes for scientific computation.