Changeset 3685 in Sophya for trunk/SophyaLib/NTools/nbtrixx.h
- Timestamp:
- Nov 27, 2009, 2:54:18 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/SophyaLib/NTools/nbtrixx.h
r3678 r3685 6 6 namespace SOPHYA { 7 7 8 template 9 void TabSort(uint_4 n, T *arr_c); 8 template<class T> 9 inline void _NR_SWAP(T &a, T &b) {T dum=a; a=b; b=dum;} 10 10 11 11 template <class T> 12 void TabSort2(uint_4 n, T *arr_c, T *brr_c); 12 void TabSort(uint_4 n, T *arr); 13 14 template <class T, class U> 15 void TabSort2(uint_4 n, T *arr, U *brr); 13 16 14 17 template <class T> 15 void TabSortInd(uint_4 n, T *arr _c, uint_4 *indx_c);18 void TabSortInd(uint_4 n, T *arr, uint_4 *indx); 16 19 17 20 }
Note:
See TracChangeset
for help on using the changeset viewer.