- Timestamp:
- 08/02/12 17:13:12 (13 years ago)
- Location:
- issm/branches/trunk-jpl-damage
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/branches/trunk-jpl-damage ¶
- Property svn:mergeinfo changed
-
TabularUnified issm/branches/trunk-jpl-damage/src/c/shared/Numerics/extrema.cpp ¶
r9320 r12878 9 9 #endif 10 10 11 #include "../../include/include.h" 11 12 12 double min(double a,double b){13 IssmDouble min(IssmDouble a,IssmDouble b){ 13 14 if (a<b)return a; 14 15 else return b; … … 18 19 else return b; 19 20 } 20 double max(double a,double b){21 IssmDouble max(IssmDouble a,IssmDouble b){ 21 22 if (a>b)return a; 22 23 else return b;
Note:
See TracChangeset
for help on using the changeset viewer.