Changeset 21897
- Timestamp:
- 07/30/17 20:08:21 (8 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/Makefile.am
r21860 r21897 501 501 502 502 #Wrapper sources 503 #Bamg sources {{{504 505 #}}}506 503 #Kml sources {{{ 507 504 kml_sources = ./modules/Exp2Kmlx/Exp2Kmlx.cpp\ -
issm/trunk-jpl/src/c/classes/Inputs/SegInput.cpp
r20827 r21897 114 114 } 115 115 /*}}}*/ 116 IssmDouble SegInput::Max(void){/*{{{*/ 117 118 const int numnodes=this->NumberofNodes(this->interpolation_type); 119 IssmDouble max=values[0]; 120 121 for(int i=1;i<numnodes;i++){ 122 if(values[i]>max) max=values[i]; 123 } 124 return max; 125 } 126 /*}}}*/ 116 127 IssmDouble SegInput::Min(void){/*{{{*/ 117 128 -
issm/trunk-jpl/src/c/classes/Inputs/SegInput.h
r21872 r21897 68 68 int GetInputInterpolationType(){_error_("not implemented yet!");}; 69 69 IssmDouble InfinityNorm(void){_error_("not implemented yet");}; 70 IssmDouble Max(void) {_error_("not implemented yet");};70 IssmDouble Max(void); 71 71 IssmDouble MaxAbs(void){_error_("not implemented yet");}; 72 72 IssmDouble Min(void);
Note:
See TracChangeset
for help on using the changeset viewer.