Changeset 21915
- Timestamp:
- 08/08/17 13:29:38 (8 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 13 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/analyses/HydrologyDCInefficientAnalysis.cpp
r21572 r21915 59 59 60 60 bool isefficientlayer; 61 bool element_active;62 61 int hydrology_model; 63 62 -
issm/trunk-jpl/src/c/analyses/MeltingAnalysis.cpp
r20690 r21915 38 38 }/*}}}*/ 39 39 void MeltingAnalysis::UpdateElements(Elements* elements,IoModel* iomodel,int analysis_counter,int analysis_type){/*{{{*/ 40 41 int frictionlaw;42 40 43 41 /*Now, is the model 3d? otherwise, do nothing: */ -
issm/trunk-jpl/src/c/bamg/BamgVertex.cpp
r21865 r21915 194 194 tria->det = bamg::det( (*tria)[0],(*tria)[1] ,(*tria)[2]); 195 195 if (loop) { 196 BamgVertex *v0,*v1,*v2,*v3;197 196 if (tria->det<0) ok =1; 198 197 else if ( (double)tria->det < detold/2 ) ok=1; -
issm/trunk-jpl/src/c/bamg/Mesh.cpp
r21865 r21915 133 133 nbt++; 134 134 } 135 if (nbt==0 && nbv==0) { 135 if (nbt==0 && nbv==0){ 136 delete [] refv; 136 137 _error_("All triangles have been removed"); 137 138 } -
issm/trunk-jpl/src/c/classes/ExternalResults/GenericExternalResult.h
r21845 r21915 321 321 template <> inline void GenericExternalResult<char*>::Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){/*{{{*/ 322 322 323 int size ;323 int size = 0; 324 324 325 325 if(marshall_direction==MARSHALLING_FORWARD || marshall_direction == MARSHALLING_SIZE)size=strlen(value)+1; -
issm/trunk-jpl/src/c/classes/FemModel.cpp
r21908 r21915 152 152 #ifndef _HAVE_JAVASCRIPT_ 153 153 if(this->parameters->Exist(OutputFileNameEnum)) this->parameters->FindParam(&outbinfilename,OutputFileNameEnum); 154 if(this- parameters->Exist(LockFileNameEnum)) this->parameters->FindParam(&lockfilename,LockFileNameEnum);154 if(this->parameters->Exist(LockFileNameEnum)) this->parameters->FindParam(&lockfilename,LockFileNameEnum); 155 155 #endif 156 156 … … 178 178 /*Now delete: */ 179 179 if(profiler)delete profiler; 180 181 182 } 183 /*}}}*/ 180 }/*}}}*/ 184 181 185 182 /*Object management*/ -
issm/trunk-jpl/src/c/classes/Loads/Pengrid.h
r21213 r21915 46 46 /*Pengrid constructors, destructors {{{*/ 47 47 Pengrid(); 48 Pengrid(int i ndex, int id, IoModel* iomodel,int analysis_type);48 Pengrid(int id, int index, IoModel* iomodel,int analysis_type); 49 49 ~Pengrid(); 50 50 /*}}}*/ -
issm/trunk-jpl/src/c/classes/Params/StringParam.cpp
r20827 r21915 52 52 void StringParam::Marshall(char** pmarshalled_data,int* pmarshalled_data_size, int marshall_direction){ /*{{{*/ 53 53 54 int size ;54 int size = 0; 55 55 56 56 if(marshall_direction==MARSHALLING_FORWARD || marshall_direction == MARSHALLING_SIZE)size=strlen(value)+1; -
issm/trunk-jpl/src/c/classes/kriging/Observations.cpp
r20827 r21915 256 256 /*If radius is not provided or is 0, return all observations*/ 257 257 if(radius==0) radius=this->quadtree->root->length; 258 259 /*For CPPcheck*/ 260 hmin = 2*radius; 258 261 259 262 /*First, find closest point in Quadtree (fast but might not be the true closest obs)*/ -
issm/trunk-jpl/src/c/modules/ExpToLevelSetx/ExpToLevelSetx.cpp
r21314 r21915 12 12 int ExpToLevelSetx(double** pdistance,double* x, double* y, int nods, Contours* contours){ 13 13 14 /*Contour:*/15 double value;16 17 14 /*output: */ 18 double* distance; 19 distance = xNew<double>(nods); 15 double* distance = xNew<double>(nods); 20 16 for(int i=0;i<nods;i++) distance[i]=1e50; 21 17 -
issm/trunk-jpl/src/c/modules/MeshProfileIntersectionx/MeshProfileIntersectionx.cpp
r19332 r21915 149 149 150 150 double xel[2],yel[2]; 151 double coord1,coord2; 151 double coord1 = 0.; 152 double coord2 = 0.; 152 153 double xfinal[2],yfinal[2]; 153 154 -
issm/trunk-jpl/src/c/modules/SurfaceMassBalancex/Gembx.cpp
r21232 r21915 33 33 34 34 /*output: */ 35 int m;36 35 IssmDouble* dz=NULL; 37 36 -
issm/trunk-jpl/src/c/shared/Sorting/binary_search.cpp
r14914 r21915 15 15 16 16 /*output: */ 17 int offset ; //offset, if found18 int found=0; //found=0 if target is not found, 1 otherwise.17 int offset=0; //offset, if found 18 int found=0; //found=0 if target is not found, 1 otherwise. 19 19 20 20 /*intermediary: */
Note:
See TracChangeset
for help on using the changeset viewer.