Changeset 23514
- Timestamp:
- 12/06/18 20:57:59 (6 years ago)
- Location:
- issm/trunk-jpl/src/c/modules/ModelProcessorx
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/modules/ModelProcessorx/ElementsAndVerticesPartitioning.cpp
r23505 r23514 15 15 #include "../ModelProcessorx/ModelProcessorx.h" 16 16 17 void ElementsAndVerticesPartitioning( bool** pmy_elements,bool** pmy_vertices,IoModel* iomodel){17 void ElementsAndVerticesPartitioning(IoModel* iomodel){ 18 18 19 19 int numberofelements2d; … … 33 33 34 34 /*First, check that partitioning has not yet been carryed out. Just check whether my_elements pointers is not already assigned a value: */ 35 if( *pmy_elements) return;35 if(iomodel->my_elements) return; 36 36 37 37 /*Number of vertices per elements, needed to correctly retrieve data: */ … … 120 120 xDelete<int>(vertex_pairing); 121 121 122 /* cleanup and assign output pointer*/123 xDelete<int>(epart);124 *pmy_elements=my_elements;125 *pmy_vertices=my_vertices;122 /*Assign pointers to iomodel*/ 123 iomodel->epart =epart; 124 iomodel->my_elements=my_elements; 125 iomodel->my_vertices=my_vertices; 126 126 } -
issm/trunk-jpl/src/c/modules/ModelProcessorx/ModelProcessorx.cpp
r23493 r23514 40 40 41 41 /*Partition Elements and Nodes*/ 42 ElementsAndVerticesPartitioning( &iomodel->my_elements,&iomodel->my_vertices,iomodel);42 ElementsAndVerticesPartitioning(iomodel); 43 43 44 44 /*Create elements, vertices and materials, independent of analysis_enum: */ -
issm/trunk-jpl/src/c/modules/ModelProcessorx/ModelProcessorx.h
r23505 r23514 25 25 26 26 /*partitioning: */ 27 void ElementsAndVerticesPartitioning( bool** pmy_elements,bool** pmy_vertices,IoModel* iomodel);27 void ElementsAndVerticesPartitioning(IoModel* iomodel); 28 28 void DiscontinuousGalerkinNodesPartitioning(bool** pmy_nodes,bool* my_elements,bool* my_vertices, IoModel* iomodel); 29 29 void FacesPartitioning(IoModel* iomodel);
Note:
See TracChangeset
for help on using the changeset viewer.