Ignore:
Timestamp:
11/02/09 14:36:31 (15 years ago)
Author:
Eric.Larour
Message:

Multithreaded ContourToMesh module.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified issm/trunk/src/c/ContourToMeshx/ContourToMeshx.h ΒΆ

    r1 r2591  
    1010#include "../objects/objects.h"
    1111
     12/*threading: */
     13typedef struct{
     14
     15        int numcontours;
     16        Contour** contours;
     17        int nods;
     18        int edgevalue;
     19        Vec in_nod;
     20        double* x;
     21        double* y;
     22
     23} ContourToMeshxThreadStruct;
     24
     25
    1226/* local prototypes: */
    1327int ContourToMeshx( Vec* pin_nods,Vec* pin_elem, double* index, double* x, double* y,Contour** contours,int numcontours,char* interptype,int nel,int nods, int edgevalue);
    1428
     29void* ContourToMeshxt(void* vContourToMeshxThreadStruct);
     30
     31
    1532#endif /* _CONTOURTOMESHX_H */
    1633
Note: See TracChangeset for help on using the changeset viewer.