|
28 | 28 |
|
29 | 29 | #pragma once |
30 | 30 |
|
31 | | -#include "../mpi_structure.hpp" |
| 31 | +#include "../parallelization/mpi_structure.hpp" |
32 | 32 |
|
33 | 33 | #ifdef HAVE_METIS |
34 | 34 | #include "metis.h" |
@@ -84,7 +84,7 @@ class CGeometry { |
84 | 84 | nPointGhost{0}, /*!< \brief Number of ghost points of the mesh. */ |
85 | 85 | nPointNode{0}, /*!< \brief Size of the node array allocated to hold CPoint objects. */ |
86 | 86 | Global_nPoint{0}, /*!< \brief Total number of nodes in a simulation across all processors (including halos). */ |
87 | | - Global_nPointDomain{0}, /*!< \brief Total number of nodes in a simulation across all processors (excluding halos). */ |
| 87 | + Global_nPointDomain{0}, /*!< \brief Total number of nodes in a simulation across all processors (excluding halos). */ |
88 | 88 | nElem{0}, /*!< \brief Number of elements of the mesh. */ |
89 | 89 | Global_nElem{0}, /*!< \brief Total number of elements in a simulation across all processors (all types). */ |
90 | 90 | Global_nElemDomain{0}, /*!< \brief Total number of elements in a simulation across all processors (excluding halos). */ |
@@ -190,7 +190,7 @@ class CGeometry { |
190 | 190 |
|
191 | 191 | CPrimalGrid** elem{nullptr}; /*!< \brief Element vector (primal grid information). */ |
192 | 192 | CPrimalGrid** face{nullptr}; /*!< \brief Face vector (primal grid information). */ |
193 | | - CPrimalGrid*** bound{nullptr}; /*!< \brief Boundary vector (primal grid information). */ |
| 193 | + CPrimalGrid*** bound{nullptr}; /*!< \brief Boundary vector (primal grid information). */ |
194 | 194 | CPoint* nodes{nullptr}; /*!< \brief Node vector (dual grid information). */ |
195 | 195 | CEdge* edges{nullptr}; /*!< \brief Edge vector (dual grid information). */ |
196 | 196 | CVertex*** vertex{nullptr}; /*!< \brief Boundary Vertex vector (dual grid information). */ |
@@ -857,20 +857,6 @@ class CGeometry { |
857 | 857 | */ |
858 | 858 | inline virtual void SetBoundControlVolume(CConfig *config, CGeometry *geometry, unsigned short action) {} |
859 | 859 |
|
860 | | - /*! |
861 | | - * \brief A virtual member. |
862 | | - * \param[in] config - Definition of the particular problem. |
863 | | - * \param[in] val_mesh_out_filename - Name of the output file. |
864 | | - */ |
865 | | - inline virtual void SetMeshFile(CConfig *config, string val_mesh_out_filename) {} |
866 | | - |
867 | | - /*! |
868 | | - * \brief A virtual member. |
869 | | - * \param[in] config - Definition of the particular problem. |
870 | | - * \param[in] val_mesh_out_filename - Name of the output file. |
871 | | - */ |
872 | | - inline virtual void SetMeshFile(CGeometry *geometry, CConfig *config, string val_mesh_out_filename) {} |
873 | | - |
874 | 860 | /*! |
875 | 861 | * \brief A virtual member. |
876 | 862 | * \param[in] config - Definition of the particular problem. |
|
0 commit comments