OPALX (Object Oriented Parallel Accelerator Library for Exascal) master (dc2a29eed580)
OPALX
Loading...
Searching...
No Matches
OpalPolynomialTimeDependence.h
Go to the documentation of this file.
1//
2// Copyright (c) 2026, Paul Scherrer Institute, Villigen PSI, Switzerland
3// All rights reserved
4//
5// This file is part of OPAL.
6//
7// OPAL is free software: you can redistribute it and/or modify
8// it under the terms of the GNU General Public License as published by
9// the Free Software Foundation, either version 3 of the License, or
10// (at your option) any later version.
11//
12// You should have received a copy of the GNU General License
13// along with OPAL. If not, see <https://www.gnu.org/licenses/>.
14//
15
16#ifndef OPAL_OPALPOLYNOMIALTIMEDEPENDENCE_HH
17#define OPAL_OPALPOLYNOMIALTIMEDEPENDENCE_HH
18
20
26public:
28 enum {
34 SIZE // size of the enum
35 };
36
39
41 ~OpalPolynomialTimeDependence() override = default;
42
44 OpalPolynomialTimeDependence* clone(const std::string& name) override;
45
49 void update() override;
50
52 void print(std::ostream&) const override;
53
54 // Not implemented.
57
58private:
59 // Clone constructor.
60 OpalPolynomialTimeDependence(const std::string& name, OpalPolynomialTimeDependence* parent);
61
62 static const std::string doc_string;
63};
64
65#endif // OPAL_OPALPOLYNOMIALTIMEDEPENDENCE_HH
OpalPolynomialTimeDependence * clone(const std::string &name) override
void print(std::ostream &) const override
OpalPolynomialTimeDependence(const OpalPolynomialTimeDependence &)=delete
~OpalPolynomialTimeDependence() override=default
void operator=(const OpalPolynomialTimeDependence &)=delete