Class documentation of Concepts

Loading...
Searching...
No Matches
recompShpFct.hh
Go to the documentation of this file.
1
6#ifndef hprecompShpFct2D_hh
7#define hprecompShpFct2D_hh
8
9#include "basics/typedefs.hh"
11#include "hp2D/quad.hh"
12
13namespace hp2D {
14
15 // ***************************************************** RecomputeShapefct **
16
18 public:
20 enum concepts::intRule rule,
21 bool constant, uint points) :
22 spc_(&spc), rule_(rule), constant_(constant), dtltPoints_(points) {}
23 uint& operator[](const uint attrib) { return points_[attrib]; }
25 void compute();
26 protected:
27 virtual std::ostream& info(std::ostream& os) const;
29 enum concepts::intRule rule_;
30 bool constant_;
31 uint dtltPoints_;
32 std::map<uint, uint> points_;
33 };
34
35} // namespace hp2D
36
37#endif // hprecompShpFct2D_hh
void compute()
Recomputing of shape functions.
virtual std::ostream & info(std::ostream &os) const
Returns information in an output stream.
intRule
Types of integration rules to choose from.
Definition defines.hh:13