Changeset 4191
- Timestamp:
- 06/24/10 13:42:10 (15 years ago)
- Location:
- issm/trunk/src/c/objects
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk/src/c/objects/ElementResults/ElementResult.h
r4050 r4191 18 18 virtual ~ElementResult(){}; 19 19 20 virtual void Echo(void)=0; 21 20 22 virtual ElementResult* SpawnSingElementResult(int index)=0; 21 23 virtual ElementResult* SpawnBeamElementResult(int* indices)=0; … … 27 29 }; 28 30 29 30 31 void NodalValuesUnitConversion(double* nodal_values, int num_nodal_values,int enum_type,Parameters* parameters); 31 32 #endif -
issm/trunk/src/c/objects/ElementResults/TriaVertexElementResult.cpp
r4050 r4191 29 29 step=in_step; 30 30 time=in_time; 31 printf("file: TriaVertexElementResult.cpp line: %i\n",__LINE__); 32 this->Echo(); 33 printf("file: TriaVertexElementResult.cpp line: %i\n",__LINE__); 31 34 } 32 35 /*}}}*/ … … 49 52 50 53 printf("TriaVertexElementResult:\n"); 51 TriaVertexElementResult::DeepEcho();52 54 printf(" step: %i\n",this->step); 53 55 printf(" time: %g\n",this->time); 56 this->TriaVertexInput::DeepEcho(); 54 57 55 58 } -
issm/trunk/src/c/objects/ExternalResults/DoubleMatExternalResult.cpp
r4182 r4191 34 34 N=in_N; 35 35 36 /*Copy result in values*/ 37 if (M*N==0) ISSMERROR("result of enum %s has a size %ix%i and con not be allocated",EnumAsString(in_enum_type),in_M,in_N); 36 38 values=(double*)xmalloc(M*N*sizeof(double)); 37 39 memcpy(values,in_values,M*N*sizeof(double));
Note:
See TracChangeset
for help on using the changeset viewer.