Changeset 18124
- Timestamp:
- 06/09/14 09:04:32 (11 years ago)
- Location:
- issm/trunk-jpl/src/c
- Files:
-
- 2 deleted
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
issm/trunk-jpl/src/c/Makefile.am
r18100 r18124 175 175 ./shared/shared.h\ 176 176 ./shared/MemOps/MemOps.h\ 177 ./shared/MemOps/MemOps.cpp\178 177 ./shared/Matrix/matrix.h\ 179 178 ./shared/Matrix/MatrixUtils.cpp\ … … 204 203 ./shared/Numerics/cross.cpp\ 205 204 ./shared/Numerics/isnan.h\ 206 ./shared/Numerics/isnan.cpp\207 205 ./shared/Numerics/cubic.cpp\ 208 206 ./shared/Numerics/NewtonSolveDnorm.cpp\ -
issm/trunk-jpl/src/c/shared/MemOps/MemOps.h
r16113 r18124 144 144 #if defined(_HAVE_ADOLC_) && !defined(_WRAPPERS_) 145 145 #include "../Numerics/types.h" 146 template <> adouble* xNew(unsigned int size); 146 template <> adouble* xNew(unsigned int size) { 147 ensureContiguousLocations(size); 148 adouble* aT_p=new adouble[size]; 149 assert(aT_p); 150 return aT_p; 151 } 147 152 #endif 148 153 -
issm/trunk-jpl/src/c/shared/Numerics/isnan.h
r14926 r18124 25 25 #if defined(_HAVE_ADOLC_) && !defined(_WRAPPERS_) 26 26 #include "./types.h" 27 template <> int xIsNan<adouble> (const adouble& X); 27 template <> int xIsNan<adouble> (const adouble& X){ 28 return isnan(X.getValue()); 29 } 28 30 #endif 29 31
Note:
See TracChangeset
for help on using the changeset viewer.