Changeset 11936
- Timestamp:
- 04/05/12 14:50:41 (13 years ago)
- Location:
- issm/trunk-jpl/src/c/objects
- Files:
-
- 45 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/objects/Bamg/BamgGeom.cpp
r11868 r11936 23 23 BamgGeom::BamgGeom(mxArray* matlab_struct){ 24 24 25 Fetch MatlabData(&this->Vertices, &this->VerticesSize[0], &this->VerticesSize[1], mxGetAssignedField(matlab_struct,0,"Vertices"));26 Fetch MatlabData(&this->Edges, &this->EdgesSize[0], &this->EdgesSize[1], mxGetAssignedField(matlab_struct,0,"Edges"));25 FetchData(&this->Vertices, &this->VerticesSize[0], &this->VerticesSize[1], mxGetAssignedField(matlab_struct,0,"Vertices")); 26 FetchData(&this->Edges, &this->EdgesSize[0], &this->EdgesSize[1], mxGetAssignedField(matlab_struct,0,"Edges")); 27 27 this->TangentAtEdgesSize[0]=0, this->TangentAtEdgesSize[1]=0; this->TangentAtEdges=NULL; 28 Fetch MatlabData(&this->Corners, &this->CornersSize[0], &this->CornersSize[1], mxGetAssignedField(matlab_struct,0,"Corners"));29 Fetch MatlabData(&this->RequiredVertices,&this->RequiredVerticesSize[0],&this->RequiredVerticesSize[1],mxGetAssignedField(matlab_struct,0,"RequiredVertices"));30 Fetch MatlabData(&this->RequiredEdges, &this->RequiredEdgesSize[0], &this->RequiredEdgesSize[1], mxGetAssignedField(matlab_struct,0,"RequiredEdges"));31 Fetch MatlabData(&this->CrackedEdges, &this->CrackedEdgesSize[0], &this->CrackedEdgesSize[1], mxGetAssignedField(matlab_struct,0,"CrackedEdges"));32 Fetch MatlabData(&this->SubDomains, &this->SubDomainsSize[0], &this->SubDomainsSize[1], mxGetAssignedField(matlab_struct,0,"SubDomains"));28 FetchData(&this->Corners, &this->CornersSize[0], &this->CornersSize[1], mxGetAssignedField(matlab_struct,0,"Corners")); 29 FetchData(&this->RequiredVertices,&this->RequiredVerticesSize[0],&this->RequiredVerticesSize[1],mxGetAssignedField(matlab_struct,0,"RequiredVertices")); 30 FetchData(&this->RequiredEdges, &this->RequiredEdgesSize[0], &this->RequiredEdgesSize[1], mxGetAssignedField(matlab_struct,0,"RequiredEdges")); 31 FetchData(&this->CrackedEdges, &this->CrackedEdgesSize[0], &this->CrackedEdgesSize[1], mxGetAssignedField(matlab_struct,0,"CrackedEdges")); 32 FetchData(&this->SubDomains, &this->SubDomainsSize[0], &this->SubDomainsSize[1], mxGetAssignedField(matlab_struct,0,"SubDomains")); 33 33 34 34 } -
issm/trunk-jpl/src/c/objects/Bamg/BamgMesh.cpp
r11868 r11936 38 38 int lines,cols; 39 39 40 Fetch MatlabData(&this->Vertices, &this->VerticesSize[0], &this->VerticesSize[1], mxGetAssignedField(matlab_struct,0,"Vertices"));41 Fetch MatlabData(&this->Edges, &this->EdgesSize[0], &this->EdgesSize[1], mxGetAssignedField(matlab_struct,0,"Edges"));42 Fetch MatlabData(&this->Triangles, &this->TrianglesSize[0], &this->TrianglesSize[1], mxGetAssignedField(matlab_struct,0,"Triangles"));40 FetchData(&this->Vertices, &this->VerticesSize[0], &this->VerticesSize[1], mxGetAssignedField(matlab_struct,0,"Vertices")); 41 FetchData(&this->Edges, &this->EdgesSize[0], &this->EdgesSize[1], mxGetAssignedField(matlab_struct,0,"Edges")); 42 FetchData(&this->Triangles, &this->TrianglesSize[0], &this->TrianglesSize[1], mxGetAssignedField(matlab_struct,0,"Triangles")); 43 43 this->QuadrilateralsSize[0]=0, this->QuadrilateralsSize[1]=0; this->Quadrilaterals=NULL; 44 44 … … 46 46 this->SubDomainsFromGeomSize[0]=0, this->SubDomainsFromGeomSize[1]=0; this->SubDomainsFromGeom=NULL; 47 47 this->CrackedVerticesSize[0]=0, this->CrackedVerticesSize[1]=0; this->CrackedVertices=NULL; 48 Fetch MatlabData(&this->CrackedEdges, &this->CrackedEdgesSize[0], &this->CrackedEdgesSize[1], mxGetAssignedField(matlab_struct,0,"CrackedEdges"));48 FetchData(&this->CrackedEdges, &this->CrackedEdgesSize[0], &this->CrackedEdgesSize[1], mxGetAssignedField(matlab_struct,0,"CrackedEdges")); 49 49 50 Fetch MatlabData(&this->VerticesOnGeomEdge, &this->VerticesOnGeomEdgeSize[0], &this->VerticesOnGeomEdgeSize[1], mxGetAssignedField(matlab_struct,0,"VerticesOnGeomEdge"));51 Fetch MatlabData(&this->VerticesOnGeomVertex,&this->VerticesOnGeomVertexSize[0],&this->VerticesOnGeomVertexSize[1],mxGetAssignedField(matlab_struct,0,"VerticesOnGeomVertex"));52 Fetch MatlabData(&this->EdgesOnGeomEdge, &this->EdgesOnGeomEdgeSize[0], &this->EdgesOnGeomEdgeSize[1], mxGetAssignedField(matlab_struct,0,"EdgesOnGeomEdge"));50 FetchData(&this->VerticesOnGeomEdge, &this->VerticesOnGeomEdgeSize[0], &this->VerticesOnGeomEdgeSize[1], mxGetAssignedField(matlab_struct,0,"VerticesOnGeomEdge")); 51 FetchData(&this->VerticesOnGeomVertex,&this->VerticesOnGeomVertexSize[0],&this->VerticesOnGeomVertexSize[1],mxGetAssignedField(matlab_struct,0,"VerticesOnGeomVertex")); 52 FetchData(&this->EdgesOnGeomEdge, &this->EdgesOnGeomEdgeSize[0], &this->EdgesOnGeomEdgeSize[1], mxGetAssignedField(matlab_struct,0,"EdgesOnGeomEdge")); 53 53 54 54 this->IssmEdgesSize[0]=0, this->IssmEdgesSize[1]=0; this->IssmEdges=NULL; 55 Fetch MatlabData(&this->IssmSegments, &this->IssmSegmentsSize[0], &this->IssmSegmentsSize[1], mxGetAssignedField(matlab_struct,0,"IssmSegments"));55 FetchData(&this->IssmSegments, &this->IssmSegmentsSize[0], &this->IssmSegmentsSize[1], mxGetAssignedField(matlab_struct,0,"IssmSegments")); 56 56 57 57 this->ElementConnectivitySize[0]=0, this->ElementConnectivitySize[1]=0; this->ElementConnectivity=NULL; -
issm/trunk-jpl/src/c/objects/Bamg/BamgOpts.cpp
r11861 r11936 45 45 BamgOpts::BamgOpts(mxArray* matlab_struct){ 46 46 47 Fetch MatlabData(&this->anisomax,mxGetField(matlab_struct,0,"anisomax"));48 Fetch MatlabData(&this->cutoff,mxGetField(matlab_struct,0,"cutoff"));49 Fetch MatlabData(&this->coeff,mxGetField(matlab_struct,0,"coeff"));50 Fetch MatlabData(&this->errg,mxGetField(matlab_struct,0,"errg"));51 Fetch MatlabData(&this->gradation,mxGetField(matlab_struct,0,"gradation"));52 Fetch MatlabData(&this->Hessiantype,mxGetField(matlab_struct,0,"Hessiantype"));53 Fetch MatlabData(&this->MaxCornerAngle,mxGetField(matlab_struct,0,"MaxCornerAngle"));54 Fetch MatlabData(&this->maxnbv,mxGetField(matlab_struct,0,"maxnbv"));55 Fetch MatlabData(&this->maxsubdiv,mxGetField(matlab_struct,0,"maxsubdiv"));56 Fetch MatlabData(&this->Metrictype,mxGetField(matlab_struct,0,"Metrictype"));57 Fetch MatlabData(&this->nbjacobi,mxGetField(matlab_struct,0,"nbjacobi"));58 Fetch MatlabData(&this->nbsmooth,mxGetField(matlab_struct,0,"nbsmooth"));59 Fetch MatlabData(&this->omega,mxGetField(matlab_struct,0,"omega"));60 Fetch MatlabData(&this->power,mxGetField(matlab_struct,0,"power"));61 Fetch MatlabData(&this->verbose,mxGetField(matlab_struct,0,"verbose"));47 FetchData(&this->anisomax,mxGetField(matlab_struct,0,"anisomax")); 48 FetchData(&this->cutoff,mxGetField(matlab_struct,0,"cutoff")); 49 FetchData(&this->coeff,mxGetField(matlab_struct,0,"coeff")); 50 FetchData(&this->errg,mxGetField(matlab_struct,0,"errg")); 51 FetchData(&this->gradation,mxGetField(matlab_struct,0,"gradation")); 52 FetchData(&this->Hessiantype,mxGetField(matlab_struct,0,"Hessiantype")); 53 FetchData(&this->MaxCornerAngle,mxGetField(matlab_struct,0,"MaxCornerAngle")); 54 FetchData(&this->maxnbv,mxGetField(matlab_struct,0,"maxnbv")); 55 FetchData(&this->maxsubdiv,mxGetField(matlab_struct,0,"maxsubdiv")); 56 FetchData(&this->Metrictype,mxGetField(matlab_struct,0,"Metrictype")); 57 FetchData(&this->nbjacobi,mxGetField(matlab_struct,0,"nbjacobi")); 58 FetchData(&this->nbsmooth,mxGetField(matlab_struct,0,"nbsmooth")); 59 FetchData(&this->omega,mxGetField(matlab_struct,0,"omega")); 60 FetchData(&this->power,mxGetField(matlab_struct,0,"power")); 61 FetchData(&this->verbose,mxGetField(matlab_struct,0,"verbose")); 62 62 63 Fetch MatlabData(&this->Crack,mxGetField(matlab_struct,0,"Crack"));64 Fetch MatlabData(&this->geometricalmetric,mxGetField(matlab_struct,0,"geometricalmetric"));65 Fetch MatlabData(&this->KeepVertices,mxGetField(matlab_struct,0,"KeepVertices"));66 Fetch MatlabData(&this->splitcorners,mxGetField(matlab_struct,0,"splitcorners"));63 FetchData(&this->Crack,mxGetField(matlab_struct,0,"Crack")); 64 FetchData(&this->geometricalmetric,mxGetField(matlab_struct,0,"geometricalmetric")); 65 FetchData(&this->KeepVertices,mxGetField(matlab_struct,0,"KeepVertices")); 66 FetchData(&this->splitcorners,mxGetField(matlab_struct,0,"splitcorners")); 67 67 68 Fetch MatlabData(&this->hmin,mxGetField(matlab_struct,0,"hmin"));69 Fetch MatlabData(&this->hmax,mxGetField(matlab_struct,0,"hmax"));70 Fetch MatlabData(&this->hminVertices,&this->hminVerticesSize[0],&this->hminVerticesSize[1],mxGetField(matlab_struct,0,"hminVertices"));71 Fetch MatlabData(&this->hmaxVertices,&this->hmaxVerticesSize[0],&this->hmaxVerticesSize[1],mxGetField(matlab_struct,0,"hmaxVertices"));72 Fetch MatlabData(&this->hVertices,&this->hVerticesSize[0],&this->hVerticesSize[1],mxGetField(matlab_struct,0,"hVertices"));73 Fetch MatlabData(&this->metric,&this->metricSize[0],&this->metricSize[1],mxGetField(matlab_struct,0,"metric"));74 Fetch MatlabData(&this->field,&this->fieldSize[0],&this->fieldSize[1],mxGetField(matlab_struct,0,"field"));75 Fetch MatlabData(&this->err,&this->errSize[0],&this->errSize[1],mxGetField(matlab_struct,0,"err"));68 FetchData(&this->hmin,mxGetField(matlab_struct,0,"hmin")); 69 FetchData(&this->hmax,mxGetField(matlab_struct,0,"hmax")); 70 FetchData(&this->hminVertices,&this->hminVerticesSize[0],&this->hminVerticesSize[1],mxGetField(matlab_struct,0,"hminVertices")); 71 FetchData(&this->hmaxVertices,&this->hmaxVerticesSize[0],&this->hmaxVerticesSize[1],mxGetField(matlab_struct,0,"hmaxVertices")); 72 FetchData(&this->hVertices,&this->hVerticesSize[0],&this->hVerticesSize[1],mxGetField(matlab_struct,0,"hVertices")); 73 FetchData(&this->metric,&this->metricSize[0],&this->metricSize[1],mxGetField(matlab_struct,0,"metric")); 74 FetchData(&this->field,&this->fieldSize[0],&this->fieldSize[1],mxGetField(matlab_struct,0,"field")); 75 FetchData(&this->err,&this->errSize[0],&this->errSize[1],mxGetField(matlab_struct,0,"err")); 76 76 77 77 /*Additional checks*/ -
issm/trunk-jpl/src/c/objects/ExternalResults/BoolExternalResult.cpp
r11861 r11936 68 68 } 69 69 /*}}}*/ 70 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)70 #ifdef _SERIAL_ 71 71 /*FUNCTION BoolExternalResult::Marshall{{{1*/ 72 72 void BoolExternalResult::Marshall(char** pmarshalled_dataset){ -
issm/trunk-jpl/src/c/objects/ExternalResults/BoolExternalResult.h
r11861 r11936 47 47 int Id(); 48 48 int MyRank(); 49 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)49 #ifdef _SERIAL_ 50 50 void Marshall(char** pmarshalled_dataset); 51 51 int MarshallSize(); -
issm/trunk-jpl/src/c/objects/ExternalResults/DoubleExternalResult.cpp
r11861 r11936 68 68 } 69 69 /*}}}*/ 70 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)70 #ifdef _SERIAL_ 71 71 /*FUNCTION DoubleExternalResult::Marshall{{{1*/ 72 72 void DoubleExternalResult::Marshall(char** pmarshalled_dataset){ -
issm/trunk-jpl/src/c/objects/ExternalResults/DoubleExternalResult.h
r11861 r11936 48 48 int Id(); 49 49 int MyRank(); 50 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)50 #ifdef _SERIAL_ 51 51 void Marshall(char** pmarshalled_dataset); 52 52 int MarshallSize(); -
issm/trunk-jpl/src/c/objects/ExternalResults/DoubleMatExternalResult.cpp
r11861 r11936 96 96 } 97 97 /*}}}*/ 98 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)98 #ifdef _SERIAL_ 99 99 /*FUNCTION DoubleMatExternalResult::Marshall{{{1*/ 100 100 void DoubleMatExternalResult::Marshall(char** pmarshalled_dataset){ -
issm/trunk-jpl/src/c/objects/ExternalResults/DoubleMatExternalResult.h
r11861 r11936 49 49 int Id(); 50 50 int MyRank(); 51 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)51 #ifdef _SERIAL_ 52 52 void Marshall(char** pmarshalled_dataset); 53 53 int MarshallSize(); -
issm/trunk-jpl/src/c/objects/ExternalResults/DoubleVecExternalResult.cpp
r11861 r11936 87 87 } 88 88 /*}}}*/ 89 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)89 #ifdef _SERIAL_ 90 90 /*FUNCTION DoubleVecExternalResult::Marshall{{{1*/ 91 91 void DoubleVecExternalResult::Marshall(char** pmarshalled_dataset){ -
issm/trunk-jpl/src/c/objects/ExternalResults/DoubleVecExternalResult.h
r11861 r11936 48 48 int Id(); 49 49 int MyRank(); 50 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)50 #ifdef _SERIAL_ 51 51 void Marshall(char** pmarshalled_dataset); 52 52 int MarshallSize(); -
issm/trunk-jpl/src/c/objects/ExternalResults/IntExternalResult.cpp
r11861 r11936 68 68 } 69 69 /*}}}*/ 70 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)70 #ifdef _SERIAL_ 71 71 /*FUNCTION IntExternalResult::Marshall{{{1*/ 72 72 void IntExternalResult::Marshall(char** pmarshalled_dataset){ -
issm/trunk-jpl/src/c/objects/ExternalResults/IntExternalResult.h
r11861 r11936 46 46 int Id(); 47 47 int MyRank(); 48 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)48 #ifdef _SERIAL_ 49 49 void Marshall(char** pmarshalled_dataset); 50 50 int MarshallSize(); -
issm/trunk-jpl/src/c/objects/ExternalResults/PetscVecExternalResult.cpp
r11861 r11936 80 80 } 81 81 /*}}}*/ 82 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)82 #ifdef _SERIAL_ 83 83 /*FUNCTION PetscVecExternalResult::Marshall{{{1*/ 84 84 void PetscVecExternalResult::Marshall(char** pmarshalled_dataset){ -
issm/trunk-jpl/src/c/objects/ExternalResults/PetscVecExternalResult.h
r11861 r11936 48 48 int Id(); 49 49 int MyRank(); 50 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)50 #ifdef _SERIAL_ 51 51 void Marshall(char** pmarshalled_dataset); 52 52 int MarshallSize(); -
issm/trunk-jpl/src/c/objects/ExternalResults/StringExternalResult.cpp
r11861 r11936 71 71 } 72 72 /*}}}*/ 73 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)73 #ifdef _SERIAL_ 74 74 /*FUNCTION StringExternalResult::Marshall{{{1*/ 75 75 void StringExternalResult::Marshall(char** pmarshalled_dataset){ -
issm/trunk-jpl/src/c/objects/ExternalResults/StringExternalResult.h
r11861 r11936 48 48 int Id(); 49 49 int MyRank(); 50 #ifdef _SERIAL_ 50 51 void Marshall(char** pmarshalled_dataset); 51 52 int MarshallSize(); 52 53 void Demarshall(char** pmarshalled_dataset); 54 #endif 53 55 int ObjectEnum(); 54 56 Object* copy(); -
issm/trunk-jpl/src/c/objects/Numerics/Matrix.cpp
r11861 r11936 68 68 int i; 69 69 70 70 71 int* idxm=(int*)xmalloc(M*sizeof(int)); 71 72 int* idxn=(int*)xmalloc(N*sizeof(int)); … … 275 276 } 276 277 /*}}}*/ 278 /*FUNCTION Matrix::Convert{{{1*/ 279 void Matrix::Convert(MatrixType type){ 280 281 #ifdef _HAVE_PETSC_ 282 MatConvert(this->matrix,ISSMToPetscMatrixType(type),MAT_REUSE_MATRIX,&this->matrix); 283 #else 284 this->matrix->Convert(type); 285 #endif 286 } 287 /*}}}*/ -
issm/trunk-jpl/src/c/objects/Numerics/Matrix.h
r11861 r11936 62 62 double* ToSerial(void); 63 63 void SetValues(int m,int* idxm,int n,int* idxn,double* values,InsMode mode); 64 void Convert(MatrixType type); 64 65 /*}}}*/ 65 66 -
issm/trunk-jpl/src/c/objects/Params/BoolParam.cpp
r11861 r11936 62 62 } 63 63 /*}}}*/ 64 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)64 #ifdef _SERIAL_ 65 65 /*FUNCTION BoolParam::Marshall{{{1*/ 66 66 void BoolParam::Marshall(char** pmarshalled_dataset){ -
issm/trunk-jpl/src/c/objects/Params/BoolParam.h
r11861 r11936 41 41 int Id(); 42 42 int MyRank(); 43 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)43 #ifdef _SERIAL_ 44 44 void Marshall(char** pmarshalled_dataset); 45 45 int MarshallSize(); -
issm/trunk-jpl/src/c/objects/Params/DoubleMatArrayParam.cpp
r11861 r11936 127 127 } 128 128 /*}}}*/ 129 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)129 #ifdef _SERIAL_ 130 130 /*FUNCTION DoubleMatArrayParam::Marshall{{{1*/ 131 131 void DoubleMatArrayParam::Marshall(char** pmarshalled_dataset){ -
issm/trunk-jpl/src/c/objects/Params/DoubleMatArrayParam.h
r11861 r11936 44 44 int Id(); 45 45 int MyRank(); 46 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)46 #ifdef _SERIAL_ 47 47 void Marshall(char** pmarshalled_dataset); 48 48 int MarshallSize(); -
issm/trunk-jpl/src/c/objects/Params/DoubleMatParam.cpp
r11861 r11936 78 78 } 79 79 /*}}}*/ 80 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)80 #ifdef _SERIAL_ 81 81 /*FUNCTION DoubleMatParam::Marshall{{{1*/ 82 82 void DoubleMatParam::Marshall(char** pmarshalled_dataset){ -
issm/trunk-jpl/src/c/objects/Params/DoubleMatParam.h
r11861 r11936 43 43 int Id(); 44 44 int MyRank(); 45 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)45 #ifdef _SERIAL_ 46 46 void Marshall(char** pmarshalled_dataset); 47 47 int MarshallSize(); -
issm/trunk-jpl/src/c/objects/Params/DoubleParam.cpp
r11861 r11936 59 59 } 60 60 /*}}}*/ 61 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)61 #ifdef _SERIAL_ 62 62 /*FUNCTION DoubleParam::Marshall{{{1*/ 63 63 void DoubleParam::Marshall(char** pmarshalled_dataset){ -
issm/trunk-jpl/src/c/objects/Params/DoubleParam.h
r11861 r11936 42 42 int Id(); 43 43 int MyRank(); 44 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)44 #ifdef _SERIAL_ 45 45 void Marshall(char** pmarshalled_dataset); 46 46 int MarshallSize(); -
issm/trunk-jpl/src/c/objects/Params/DoubleVecParam.cpp
r11861 r11936 75 75 } 76 76 /*}}}*/ 77 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)77 #ifdef _SERIAL_ 78 78 /*FUNCTION DoubleVecParam::Marshall{{{1*/ 79 79 void DoubleVecParam::Marshall(char** pmarshalled_dataset){ -
issm/trunk-jpl/src/c/objects/Params/DoubleVecParam.h
r11861 r11936 42 42 int Id(); 43 43 int MyRank(); 44 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)44 #ifdef _SERIAL_ 45 45 void Marshall(char** pmarshalled_dataset); 46 46 int MarshallSize(); -
issm/trunk-jpl/src/c/objects/Params/FileParam.cpp
r11861 r11936 62 62 } 63 63 /*}}}*/ 64 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)64 #ifdef _SERIAL_ 65 65 /*FUNCTION FileParam::Marshall{{{1*/ 66 66 void FileParam::Marshall(char** pmarshalled_dataset){ -
issm/trunk-jpl/src/c/objects/Params/FileParam.h
r11861 r11936 41 41 int Id(); 42 42 int MyRank(); 43 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)43 #ifdef _SERIAL_ 44 44 void Marshall(char** pmarshalled_dataset); 45 45 int MarshallSize(); -
issm/trunk-jpl/src/c/objects/Params/IntMatParam.cpp
r11861 r11936 78 78 } 79 79 /*}}}*/ 80 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)80 #ifdef _SERIAL_ 81 81 /*FUNCTION IntMatParam::Marshall{{{1*/ 82 82 void IntMatParam::Marshall(char** pmarshalled_dataset){ -
issm/trunk-jpl/src/c/objects/Params/IntMatParam.h
r11861 r11936 43 43 int Id(); 44 44 int MyRank(); 45 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)45 #ifdef _SERIAL_ 46 46 void Marshall(char** pmarshalled_dataset); 47 47 int MarshallSize(); -
issm/trunk-jpl/src/c/objects/Params/IntParam.cpp
r11861 r11936 62 62 } 63 63 /*}}}*/ 64 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)64 #ifdef _SERIAL_ 65 65 /*FUNCTION IntParam::Marshall{{{1*/ 66 66 void IntParam::Marshall(char** pmarshalled_dataset){ -
issm/trunk-jpl/src/c/objects/Params/IntParam.h
r11861 r11936 42 42 int Id(); 43 43 int MyRank(); 44 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)44 #ifdef _SERIAL_ 45 45 void Marshall(char** pmarshalled_dataset); 46 46 int MarshallSize(); -
issm/trunk-jpl/src/c/objects/Params/IntVecParam.cpp
r11861 r11936 91 91 } 92 92 /*}}}*/ 93 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)93 #ifdef _SERIAL_ 94 94 /*FUNCTION IntVecParam::Marshall{{{1*/ 95 95 void IntVecParam::Marshall(char** pmarshalled_dataset){ -
issm/trunk-jpl/src/c/objects/Params/IntVecParam.h
r11861 r11936 43 43 int Id(); 44 44 int MyRank(); 45 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)45 #ifdef _SERIAL_ 46 46 void Marshall(char** pmarshalled_dataset); 47 47 int MarshallSize(); -
issm/trunk-jpl/src/c/objects/Params/MatrixParam.cpp
r11861 r11936 70 70 } 71 71 /*}}}*/ 72 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)72 #ifdef _SERIAL_ 73 73 /*FUNCTION MatrixParam::Marshall{{{1*/ 74 74 void MatrixParam::Marshall(char** pmarshalled_dataset){ -
issm/trunk-jpl/src/c/objects/Params/MatrixParam.h
r11861 r11936 42 42 int Id(); 43 43 int MyRank(); 44 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)44 #ifdef _SERIAL_ 45 45 void Marshall(char** pmarshalled_dataset); 46 46 int MarshallSize(); -
issm/trunk-jpl/src/c/objects/Params/StringArrayParam.cpp
r11861 r11936 92 92 } 93 93 /*}}}*/ 94 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)94 #ifdef _SERIAL_ 95 95 /*FUNCTION StringArrayParam::Marshall{{{1*/ 96 96 void StringArrayParam::Marshall(char** pmarshalled_dataset){ -
issm/trunk-jpl/src/c/objects/Params/StringArrayParam.h
r11861 r11936 44 44 int Id(); 45 45 int MyRank(); 46 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)46 #ifdef _SERIAL_ 47 47 void Marshall(char** pmarshalled_dataset); 48 48 int MarshallSize(); -
issm/trunk-jpl/src/c/objects/Params/StringParam.cpp
r11861 r11936 64 64 } 65 65 /*}}}*/ 66 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)66 #ifdef _SERIAL_ 67 67 /*FUNCTION StringParam::Marshall{{{1*/ 68 68 void StringParam::Marshall(char** pmarshalled_dataset){ -
issm/trunk-jpl/src/c/objects/Params/StringParam.h
r11861 r11936 42 42 int Id(); 43 43 int MyRank(); 44 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)44 #ifdef _SERIAL_ 45 45 void Marshall(char** pmarshalled_dataset); 46 46 int MarshallSize(); -
issm/trunk-jpl/src/c/objects/Params/VectorParam.cpp
r11861 r11936 72 72 } 73 73 /*}}}*/ 74 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)74 #ifdef _SERIAL_ 75 75 /*FUNCTION VectorParam::Marshall{{{1*/ 76 76 void VectorParam::Marshall(char** pmarshalled_dataset){ -
issm/trunk-jpl/src/c/objects/Params/VectorParam.h
r11861 r11936 42 42 int Id(); 43 43 int MyRank(); 44 #if defined(_HAVE_MATLAB_) && defined(_SERIAL_)44 #ifdef _SERIAL_ 45 45 void Marshall(char** pmarshalled_dataset); 46 46 int MarshallSize();
Note:
See TracChangeset
for help on using the changeset viewer.