You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Common/include/geometry/CGeometry.hpp
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -137,8 +137,8 @@ class CGeometry {
137
137
138
138
#if defined(HAVE_MPI) && defined(HAVE_PARMETIS)
139
139
vector<vector<unsignedlong> > adj_nodes; /*!< \brief Vector of vectors holding each node's adjacency during preparation for ParMETIS. */
140
-
idx_t *adjacency{nullptr}; /*!< \brief Local adjacency array to be input into ParMETIS for partitioning (idx_t is a ParMETIS type defined in their headers). */
141
-
idx_t *xadj{nullptr}; /*!< \brief Index array that points to the start of each node's adjacency in CSR format (needed to interpret the adjacency array). */
140
+
vector<idx_t> adjacency; /*!< \brief Local adjacency array to be input into ParMETIS for partitioning (idx_t is a ParMETIS type defined in their headers). */
141
+
vector<idx_t> xadj; /*!< \brief Index array that points to the start of each node's adjacency in CSR format (needed to interpret the adjacency array). */
142
142
#endif
143
143
144
144
/*--- Turbomachinery variables ---*/
@@ -769,7 +769,7 @@ class CGeometry {
769
769
* \brief A virtual member.
770
770
* \param[in] config - Definition of the particular problem.
0 commit comments