tried to get rid of warnings - unsuccessfully
This commit is contained in:
parent
a416ccd362
commit
56af4f4bef
3 changed files with 67 additions and 32 deletions
|
|
@ -332,14 +332,27 @@ private:
|
|||
void Write_ascii_paraview_3D(std::string const &fname, std::vector<double> const &v) const;
|
||||
|
||||
void InitializeOuterEdges();
|
||||
|
||||
std::vector<int> _outerEdges;
|
||||
std::vector<int> _outerEdgesSubdomains;
|
||||
std::vector<int> _outerEdgesNodes;
|
||||
|
||||
// Every element belongs to 1 subdomain
|
||||
std::vector<int> _elementSubdomains;
|
||||
|
||||
// Every edge has 2 adjacent subdomains
|
||||
std::vector<int> _edgeSubdomains;
|
||||
|
||||
|
||||
public:
|
||||
const std::vector<int> BoundaryEdges() const;
|
||||
const std::vector<int> BoundaryEdgeNodes() const;
|
||||
const std::vector<int> OuterEdges() const;
|
||||
const std::vector<int> OuterEdgesSubdomains() const;
|
||||
const std::vector<int> OuterEdgesNodes() const;
|
||||
const std::vector<int> ElementSubdomains() const;
|
||||
const std::vector<int> EdgeSubdomains() const;
|
||||
|
||||
std::vector<int> OuterEdges;
|
||||
std::vector<int> OuterEdgesSubdomains;
|
||||
std::vector<int> OuterEdgesNodes;
|
||||
|
||||
|
||||
|
||||
|
|
@ -561,11 +574,7 @@ public:
|
|||
*/
|
||||
[[nodiscard]] bool checkObtuseAngles() const;
|
||||
|
||||
// Every element belongs to 1 subdomain
|
||||
std::vector<int> ElementSubdomains;
|
||||
|
||||
// Every edge has 2 adjacent subdomains
|
||||
std::vector<int> EdgeSubdomains;
|
||||
|
||||
/**
|
||||
* Reads the global triangle to subdomain mapping.
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue