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
su2double *Buffer_Send_Coord, /*!< \brief Buffer to send coordinate values. */
60
62
*Buffer_Receive_Coord; /*!< \brief Buffer to receive coordinate values. */
61
63
62
-
unsignedlong
63
-
*Buffer_Receive_nLinkedNodes, /*!< \brief Buffer to receive the number of edges surface-connected to each node. */
64
-
*Buffer_Receive_LinkedNodes, /*!< \brief Buffer to receive the list of nodes surface-connected to the nodes through an edge. */
65
-
*Buffer_Receive_StartLinkedNodes, /*!< \brief Buffer to receive the index of the Receive_LinkedNodes buffer where corresponding list of linked nodes begins. */
66
-
*Buffer_Receive_Proc; /*!< \brief Buffer to receive the thread that owns the node. */
64
+
/*! \brief Buffer to receive the number of surface-connected edges, for each vertex. */
65
+
unsignedlong *Buffer_Receive_nLinkedNodes;
66
+
/*! \brief Buffer to receive the index of the Receive_LinkedNodes buffer where corresponding list of linked nodes begins. */
67
+
unsignedlong *Buffer_Receive_StartLinkedNodes;
68
+
/*! \brief Buffer to receive the list of surface-connected nodes, for each vertex.
69
+
* \details The vertices are ordered as in Buffer_Receive_nLinkedNodes and Buffer_Receive_StartLinkedNodes, but for each*/
70
+
unsignedlong *Buffer_Receive_LinkedNodes;
71
+
/*! \brief Buffer to receive the rank that owns the vertex. */
72
+
unsignedlong *Buffer_Receive_Proc;
67
73
68
74
unsignedlong
69
75
nGlobalVertex_Target, /*!< \brief Global number of vertex of the target boundary. */
0 commit comments