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