Changeset 35564a5 in git
- Timestamp:
- May 24, 2013, 2:43:34 PM (10 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 7d160bb18d0d96adea1a7d83376ae5b6048916bc
- Parents:
- e62a1dcba3e4e6ef2ea1466f671ce574477a55e3
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2013-05-24 14:43:34+02:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2013-05-24 14:52:29+02:00
- Files:
-
- 14 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/claptmpl.cc
re62a1d r35564a5 121 121 #include <Singular/Minor.h> 122 122 #include <Singular/Cache.h> 123 123 124 template class std::list<int>; 124 125 template class std::list<MinorKey>; 125 126 template class std::list<IntMinorValue>; 126 127 template class std::list<PolyMinorValue>; 128 129 template class std::_List_base<IntMinorValue, std::allocator<IntMinorValue> >; 130 template class std::_List_base<int, std::allocator<int> >; 131 template class std::_List_base<MinorKey, std::allocator<MinorKey> >; 132 template class std::_List_base<PolyMinorValue, std::allocator<PolyMinorValue> >; 133 127 134 template class Cache<MinorKey, IntMinorValue>; 128 135 template class Cache<MinorKey, PolyMinorValue>; 136 -
factory/ftmpl_inst.cc
re62a1d r35564a5 64 64 template class ListIterator< List<int> >; 65 65 template class List< List<CanonicalForm> >; 66 template class ListItem< List<CanonicalForm> >; 66 67 template class ListIterator< List<CanonicalForm> >; 67 68 68 69 69 template List<Variable> Union ( const List<Variable>&, const List<Variable>& ); -
factory/libfac/factor/tmpl_inst.cc
re62a1d r35564a5 31 31 template class List<SForm>; 32 32 template class ListIterator<SForm>; 33 template class ListItem<Substitution<CanonicalForm> >; 33 34 34 35 #ifndef NOSTREAMIO -
kernel/fglmzero.cc
re62a1d r35564a5 1245 1245 } 1246 1246 1247 template class List<fglmSelem>; 1248 template class ListItem<fglmSelem>; 1249 template class ListIterator<fglmSelem>; 1250 template class List<fglmDelem>; 1251 template class ListItem<fglmDelem>; 1252 template class ListIterator<fglmDelem>; 1253 1247 1254 1248 1255 #endif -
kernel/npolygon.cc
re62a1d r35564a5 396 396 // ---------------------------------------------------------------------------- 397 397 398 template class KMatrix<Rational>; 399 398 400 newtonPolygon::newtonPolygon( poly f, const ring s ) 399 401 { -
kernel/tgb.cc
re62a1d r35564a5 5081 5081 { 5082 5082 } 5083 5084 #if 0 5085 5086 template int pos_helper<int, int*>(skStrategy*, spolyrec*, int, int*, spolyrec**); 5087 template int pos_helper<long, long*>(skStrategy*, spolyrec*, long, long*, spolyrec**); 5088 5089 template void noro_step<unsigned char>(spolyrec**, int&, slimgb_alg*); 5090 template void noro_step<unsigned int>(spolyrec**, int&, slimgb_alg*); 5091 template void noro_step<unsigned short>(spolyrec**, int&, slimgb_alg*); 5092 5093 5094 template int term_nodes_sort_crit<unsigned char>(void const*, void const*); 5095 template int term_nodes_sort_crit<unsigned int>(void const*, void const*); 5096 template int term_nodes_sort_crit<unsigned short>(void const*, void const*); 5097 5098 template spolyrec* row_to_poly<unsigned char>(unsigned char*, spolyrec**, int, ip_sring*); 5099 template spolyrec* row_to_poly<unsigned int>(unsigned int*, spolyrec**, int, ip_sring*); 5100 template spolyrec* row_to_poly<unsigned short>(unsigned short*, spolyrec**, int, ip_sring*); 5101 5102 template void simplest_gauss_modp<unsigned char>(unsigned char*, int, int); 5103 template void simplest_gauss_modp<unsigned int>(unsigned int*, int, int); 5104 template void simplest_gauss_modp<unsigned short>(unsigned short*, int, int); 5105 5106 5107 template int modP_lastIndexRow<unsigned char>(unsigned char*, int); 5108 template int modP_lastIndexRow<unsigned int>(unsigned int*, int); 5109 template int modP_lastIndexRow<unsigned short>(unsigned short*, int); 5110 5111 template SparseRow<unsigned char>* noro_red_to_non_poly_t<unsigned char>(spolyrec*, int&, NoroCache<unsigned char>*, slimgb_alg*); 5112 template SparseRow<unsigned int>* noro_red_to_non_poly_t<unsigned int>(spolyrec*, int&, NoroCache<unsigned int>*, slimgb_alg*); 5113 template SparseRow<unsigned short>* noro_red_to_non_poly_t<unsigned short>(spolyrec*, int&, NoroCache<unsigned short>*, slimgb_alg*); 5114 5115 5116 template MonRedResNP<unsigned char> noro_red_mon_to_non_poly<unsigned char>(spolyrec*, NoroCache<unsigned char>*, slimgb_alg*); 5117 template MonRedResNP<unsigned int> noro_red_mon_to_non_poly<unsigned int>(spolyrec*, NoroCache<unsigned int>*, slimgb_alg*); 5118 template MonRedResNP<unsigned short> noro_red_mon_to_non_poly<unsigned short>(spolyrec*, NoroCache<unsigned short>*, slimgb_alg*); 5119 5120 template SparseRow<unsigned char>* noro_red_to_non_poly_dense<unsigned char>(MonRedResNP<unsigned char>*, int, NoroCache<unsigned char>*); 5121 template SparseRow<unsigned char>* noro_red_to_non_poly_sparse<unsigned char>(MonRedResNP<unsigned char>*, int, NoroCache<unsigned char>*); 5122 template SparseRow<unsigned int>* noro_red_to_non_poly_dense<unsigned int>(MonRedResNP<unsigned int>*, int, NoroCache<unsigned int>*); 5123 template SparseRow<unsigned int>* noro_red_to_non_poly_sparse<unsigned int>(MonRedResNP<unsigned int>*, int, NoroCache<unsigned int>*); 5124 template SparseRow<unsigned short>* noro_red_to_non_poly_dense<unsigned short>(MonRedResNP<unsigned short>*, int, NoroCache<unsigned short>*); 5125 template SparseRow<unsigned short>* noro_red_to_non_poly_sparse<unsigned short>(MonRedResNP<unsigned short>*, int, NoroCache<unsigned short>*); 5126 5127 5128 5129 template class DataNoroCacheNode<unsigned char>; 5130 template class DataNoroCacheNode<unsigned int>; 5131 template class DataNoroCacheNode<unsigned short>; 5132 5133 template class NoroCache<unsigned char>; 5134 template class NoroCache<unsigned int>; 5135 template class NoroCache<unsigned short>; 5136 5137 5138 5139 template void add_coef_times_dense<unsigned char>(unsigned char*, int, unsigned char const*, int, snumber*); 5140 template void add_coef_times_dense<unsigned int>(unsigned int*, int, unsigned int const*, int, snumber*); 5141 template void add_coef_times_dense<unsigned short>(unsigned short*, int, unsigned short const*, int, snumber*); 5142 template void add_coef_times_sparse<unsigned char>(unsigned char*, int, SparseRow<unsigned char>*, snumber*); 5143 template void add_coef_times_sparse<unsigned int>(unsigned int*, int, SparseRow<unsigned int>*, snumber*); 5144 template void add_coef_times_sparse<unsigned short>(unsigned short*, int, SparseRow<unsigned short>*, snumber*); 5145 template void add_dense<unsigned char>(unsigned char*, int, unsigned char const*, int); 5146 template void add_dense<unsigned int>(unsigned int*, int, unsigned int const*, int); 5147 template void add_dense<unsigned short>(unsigned short*, int, unsigned short const*, int); 5148 template void add_sparse<unsigned char>(unsigned char*, int, SparseRow<unsigned char>*); 5149 template void add_sparse<unsigned int>(unsigned int*, int, SparseRow<unsigned int>*); 5150 template void add_sparse<unsigned short>(unsigned short*, int, SparseRow<unsigned short>*); 5151 5152 5153 template void sub_dense<unsigned char>(unsigned char*, int, unsigned char const*, int); 5154 template void sub_dense<unsigned int>(unsigned int*, int, unsigned int const*, int); 5155 template void sub_dense<unsigned short>(unsigned short*, int, unsigned short const*, int); 5156 template void sub_sparse<unsigned char>(unsigned char*, int, SparseRow<unsigned char>*); 5157 template void sub_sparse<unsigned int>(unsigned int*, int, SparseRow<unsigned int>*); 5158 template void sub_sparse<unsigned short>(unsigned short*, int, SparseRow<unsigned short>*); 5159 template void write_coef_idx_to_buffer_dense<unsigned char>(CoefIdx<unsigned char>*, int&, unsigned char*, int); 5160 template void write_coef_idx_to_buffer_dense<unsigned int>(CoefIdx<unsigned int>*, int&, unsigned int*, int); 5161 template void write_coef_idx_to_buffer_dense<unsigned short>(CoefIdx<unsigned short>*, int&, unsigned short*, int); 5162 template void write_coef_idx_to_buffer<unsigned char>(CoefIdx<unsigned char>*, int&, int*, unsigned char*, int); 5163 template void write_coef_idx_to_buffer<unsigned int>(CoefIdx<unsigned int>*, int&, int*, unsigned int*, int); 5164 template void write_coef_idx_to_buffer<unsigned short>(CoefIdx<unsigned short>*, int&, int*, unsigned short*, int); 5165 template void write_coef_times_xx_idx_to_buffer_dense<unsigned char>(CoefIdx<unsigned char>*, int&, unsigned char*, int, snumber*); 5166 template void write_coef_times_xx_idx_to_buffer_dense<unsigned int>(CoefIdx<unsigned int>*, int&, unsigned int*, int, snumber*); 5167 template void write_coef_times_xx_idx_to_buffer_dense<unsigned short>(CoefIdx<unsigned short>*, int&, unsigned short*, int, snumber*); 5168 template void write_coef_times_xx_idx_to_buffer<unsigned char>(CoefIdx<unsigned char>*, int&, int*, unsigned char*, int, snumber*); 5169 template void write_coef_times_xx_idx_to_buffer<unsigned int>(CoefIdx<unsigned int>*, int&, int*, unsigned int*, int, snumber*); 5170 template void write_coef_times_xx_idx_to_buffer<unsigned short>(CoefIdx<unsigned short>*, int&, int*, unsigned short*, int, snumber*); 5171 template void write_minus_coef_idx_to_buffer_dense<unsigned char>(CoefIdx<unsigned char>*, int&, unsigned char*, int); 5172 template void write_minus_coef_idx_to_buffer_dense<unsigned int>(CoefIdx<unsigned int>*, int&, unsigned int*, int); 5173 template void write_minus_coef_idx_to_buffer_dense<unsigned short>(CoefIdx<unsigned short>*, int&, unsigned short*, int); 5174 template void write_minus_coef_idx_to_buffer<unsigned char>(CoefIdx<unsigned char>*, int&, int*, unsigned char*, int); 5175 template void write_minus_coef_idx_to_buffer<unsigned int>(CoefIdx<unsigned int>*, int&, int*, unsigned int*, int); 5176 template void write_minus_coef_idx_to_buffer<unsigned short>(CoefIdx<unsigned short>*, int&, int*, unsigned short*, int); 5177 5178 5179 5180 template void std::__final_insertion_sort<CoefIdx<unsigned char>*>(CoefIdx<unsigned char>*, CoefIdx<unsigned char>*); 5181 template void std::__final_insertion_sort<CoefIdx<unsigned int>*>(CoefIdx<unsigned int>*, CoefIdx<unsigned int>*); 5182 template void std::__final_insertion_sort<CoefIdx<unsigned short>*>(CoefIdx<unsigned short>*, CoefIdx<unsigned short>*); 5183 template void std::__introsort_loop<CoefIdx<unsigned char>*, long>(CoefIdx<unsigned char>*, CoefIdx<unsigned char>*, long); 5184 template void std::__introsort_loop<CoefIdx<unsigned int>*, long>(CoefIdx<unsigned int>*, CoefIdx<unsigned int>*, long); 5185 template void std::__introsort_loop<CoefIdx<unsigned short>*, long>(CoefIdx<unsigned short>*, CoefIdx<unsigned short>*, long); 5186 5187 template void std::__heap_select<CoefIdx<unsigned char>*>(CoefIdx<unsigned char>*, CoefIdx<unsigned char>*, CoefIdx<unsigned char>*); 5188 template void std::__heap_select<CoefIdx<unsigned int>*>(CoefIdx<unsigned int>*, CoefIdx<unsigned int>*, CoefIdx<unsigned int>*); 5189 template void std::__heap_select<CoefIdx<unsigned short>*>(CoefIdx<unsigned short>*, CoefIdx<unsigned short>*, CoefIdx<unsigned short>*); 5190 template void std::__insertion_sort<CoefIdx<unsigned char>*>(CoefIdx<unsigned char>*, CoefIdx<unsigned char>*); 5191 template void std::__insertion_sort<CoefIdx<unsigned int>*>(CoefIdx<unsigned int>*, CoefIdx<unsigned int>*); 5192 template void std::__insertion_sort<CoefIdx<unsigned short>*>(CoefIdx<unsigned short>*, CoefIdx<unsigned short>*); 5193 template void std::__move_median_first<CoefIdx<unsigned char>*>(CoefIdx<unsigned char>*, CoefIdx<unsigned char>*, CoefIdx<unsigned char>*); 5194 template void std::__move_median_first<CoefIdx<unsigned int>*>(CoefIdx<unsigned int>*, CoefIdx<unsigned int>*, CoefIdx<unsigned int>*); 5195 template void std::__move_median_first<CoefIdx<unsigned short>*>(CoefIdx<unsigned short>*, CoefIdx<unsigned short>*, CoefIdx<unsigned short>*); 5196 template void std::sort_heap<CoefIdx<unsigned char>*>(CoefIdx<unsigned char>*, CoefIdx<unsigned char>*); 5197 template void std::sort_heap<CoefIdx<unsigned int>*>(CoefIdx<unsigned int>*, CoefIdx<unsigned int>*); 5198 template void std::sort_heap<CoefIdx<unsigned short>*>(CoefIdx<unsigned short>*, CoefIdx<unsigned short>*); 5199 template void std::__unguarded_linear_insert<CoefIdx<unsigned char>*>(CoefIdx<unsigned char>*); 5200 template void std::__unguarded_linear_insert<CoefIdx<unsigned int>*>(CoefIdx<unsigned int>*); 5201 template void std::__unguarded_linear_insert<CoefIdx<unsigned short>*>(CoefIdx<unsigned short>*); 5202 5203 template CoefIdx<unsigned char>* std::__unguarded_partition<CoefIdx<unsigned char>*, CoefIdx<unsigned char> >(CoefIdx<unsigned char>*, CoefIdx<unsigned char>*, CoefIdx<unsigned char> const&); 5204 template CoefIdx<unsigned int>* std::__unguarded_partition<CoefIdx<unsigned int>*, CoefIdx<unsigned int> >(CoefIdx<unsigned int>*, CoefIdx<unsigned int>*, CoefIdx<unsigned int> const&); 5205 template CoefIdx<unsigned short>* std::__unguarded_partition<CoefIdx<unsigned short>*, CoefIdx<unsigned short> >(CoefIdx<unsigned short>*, CoefIdx<unsigned short>*, CoefIdx<unsigned short> const&); 5206 template void std::__adjust_heap<CoefIdx<unsigned char>*, long, CoefIdx<unsigned char> >(CoefIdx<unsigned char>*, long, long, CoefIdx<unsigned char>); 5207 template void std::__adjust_heap<CoefIdx<unsigned int>*, long, CoefIdx<unsigned int> >(CoefIdx<unsigned int>*, long, long, CoefIdx<unsigned int>); 5208 template void std::__adjust_heap<CoefIdx<unsigned short>*, long, CoefIdx<unsigned short> >(CoefIdx<unsigned short>*, long, long, CoefIdx<unsigned short>); 5209 template void std::make_heap<CoefIdx<unsigned char>*>(CoefIdx<unsigned char>*, CoefIdx<unsigned char>*); 5210 template void std::make_heap<CoefIdx<unsigned int>*>(CoefIdx<unsigned int>*, CoefIdx<unsigned int>*); 5211 template void std::make_heap<CoefIdx<unsigned short>*>(CoefIdx<unsigned short>*, CoefIdx<unsigned short>*); 5212 5213 template void std::__push_heap<CoefIdx<unsigned char>*, long, CoefIdx<unsigned char> >(CoefIdx<unsigned char>*, long, long, CoefIdx<unsigned char>); 5214 template void std::__push_heap<CoefIdx<unsigned int>*, long, CoefIdx<unsigned int> >(CoefIdx<unsigned int>*, long, long, CoefIdx<unsigned int>); 5215 template void std::__push_heap<CoefIdx<unsigned short>*, long, CoefIdx<unsigned short> >(CoefIdx<unsigned short>*, long, long, CoefIdx<unsigned short>); 5216 5217 5218 template class std::vector<DataNoroCacheNode<unsigned char>*, std::allocator<DataNoroCacheNode<unsigned char>*> >; 5219 template class std::vector<DataNoroCacheNode<unsigned int>*, std::allocator<DataNoroCacheNode<unsigned int>*> >; 5220 template class std::vector<DataNoroCacheNode<unsigned short>*, std::allocator<DataNoroCacheNode<unsigned short>*> >; 5221 template class std::vector<PolySimple, std::allocator<PolySimple> >; 5222 #endif 5223 -
libpolys/polys/ext_fields/algext.cc
re62a1d r35564a5 1427 1427 return FALSE; 1428 1428 } 1429 1430 template class CRecursivePolyCoeffsEnumerator<NAConverter>; 1431 1432 template class IAccessor<snumber*>; 1433 -
libpolys/polys/ext_fields/transext.cc
re62a1d r35564a5 2133 2133 return FALSE; 2134 2134 } 2135 2136 template class CRecursivePolyCoeffsEnumerator<NTNumConverter>; 2137 template class IEnumerator<snumber*>; -
libpolys/polys/nc/ncSACache.cc
re62a1d r35564a5 45 45 46 46 47 #if OUTPUT48 47 void CGlobalCacheHash::History(const EHistoryType t, const CGlobalCacheHash::CExponent a, const CGlobalCacheHash::CExponent b, const poly p) 49 #else50 void CGlobalCacheHash::History(const EHistoryType, const CGlobalCacheHash::CExponent, const CGlobalCacheHash::CExponent, const poly)51 #endif52 48 { 53 49 #if OUTPUT … … 64 60 65 61 66 #if OUTPUT67 62 void CSpecialPairCacheHash::History(const EHistoryType t, const CSpecialPairCacheHash::CExponent a, const CSpecialPairCacheHash::CExponent b, const poly p) 68 #else69 void CSpecialPairCacheHash::History(const EHistoryType, const CSpecialPairCacheHash::CExponent, const CSpecialPairCacheHash::CExponent, const poly)70 #endif71 63 { 72 64 #if OUTPUT … … 81 73 #endif 82 74 } 75 76 77 template class CCacheHash<int>; 78 template class CCacheHash<spolyrec*>; -
libpolys/polys/nc/ncSACache.h
re62a1d r35564a5 87 87 }; 88 88 89 virtual void History(const EHistoryType , const CExponent /*a*/, const CExponent /*b*/, const poly /*p = NULL*/)89 virtual void History(const EHistoryType , const CExponent /*a*/, const CExponent /*b*/, const poly = NULL) 90 90 { 91 91 PrintS("CCacheHash::History(a, b, [p])!\n"); -
libpolys/polys/nc/ncSAMult.cc
re62a1d r35564a5 1106 1106 return MultiplyEE(expLeft, p_GetExp(pMonom, GetI(), GetBasering())); 1107 1107 } 1108 #endif 1108 1109 template class CMultiplier<CPower>; 1110 template class CMultiplier<int>; 1111 template class CMultiplier<spolyrec*>; 1112 1113 1114 #endif -
libpolys/polys/nc/old.gring.cc
re62a1d r35564a5 3517 3517 // return(TRUE); 3518 3518 // } 3519 #endif 3519 3520 #endif 3521 3522 3523 -
libpolys/tests/common.h
re62a1d r35564a5 154 154 155 155 156 template void CxxTest::doAssertDiffers<n_Procs_s*, void*>(char const*, unsigned int, char const*, n_Procs_s*, char const*, void*, char const*); 157 template void CxxTest::doAssertDiffers<snumber* (*)(long, n_Procs_s*), void*>(char const*, unsigned int, char const*, snumber* (*)(long, n_Procs_s*), char const*, void*, char const*); 158 template void CxxTest::doAssertDiffers<snumber* (*)(snumber*, snumber*, n_Procs_s*), void*>(char const*, unsigned int, char const*, snumber* (*)(snumber*, snumber*, n_Procs_s*), char const*, void*, char const*); 159 template void CxxTest::doAssertDiffers<void (*)(n_Procs_s*, int), void*>(char const*, unsigned int, char const*, void (*)(n_Procs_s*, int), char const*, void*, char const*); 160 template void CxxTest::doAssertDiffers<void (*)(snumber**, n_Procs_s*), void*>(char const*, unsigned int, char const*, void (*)(snumber**, n_Procs_s*), char const*, void*, char const*); 161 template void CxxTest::doAssertDiffers<void (*)(snumber*&, n_Procs_s*), void*>(char const*, unsigned int, char const*, void (*)(snumber*&, n_Procs_s*), char const*, void*, char const*); 162 template void CxxTest::doAssertEquals<int, int>(char const*, unsigned int, char const*, int, char const*, int, char const*); 163 template void CxxTest::doAssertEquals<n_coeffType, n_coeffType>(char const*, unsigned int, char const*, n_coeffType, char const*, n_coeffType, char const*); 164 template void CxxTest::doAssertEquals<snumber* (*)(long, n_Procs_s*), snumber* (*)(long, n_Procs_s*)>(char const*, unsigned int, char const*, snumber* (*)(long, n_Procs_s*), char const*, snumber* (*)(long, n_Procs_s*), char const*); 165 template void CxxTest::doAssertEquals<snumber* (*)(snumber*, snumber*, n_Procs_s*), snumber* (*)(snumber*, snumber*, n_Procs_s*)>(char const*, unsigned int, char const*, snumber* (*)(snumber*, snumber*, n_Procs_s*), char const*, snumber* (*)(snumber*, snumber*, n_Procs_s*), char const*); 166 template void CxxTest::doAssertEquals<void (*)(snumber**, n_Procs_s*), void (*)(snumber**, n_Procs_s*)>(char const*, unsigned int, char const*, void (*)(snumber**, n_Procs_s*), char const*, void (*)(snumber**, n_Procs_s*), char const*); 167 168 template bool CxxTest::differs<n_Procs_s*, void*>(n_Procs_s*, void*); 169 template bool CxxTest::differs<snumber* (*)(long, n_Procs_s*), void*>(snumber* (*)(long, n_Procs_s*), void*); 170 template bool CxxTest::differs<snumber* (*)(snumber*, snumber*, n_Procs_s*), void*>(snumber* (*)(snumber*, snumber*, n_Procs_s*), void*); 171 template bool CxxTest::differs<void (*)(n_Procs_s*, int), void*>(void (*)(n_Procs_s*, int), void*); 172 template bool CxxTest::differs<void (*)(snumber**, n_Procs_s*), void*>(void (*)(snumber**, n_Procs_s*), void*); 173 template bool CxxTest::differs<void (*)(snumber*&, n_Procs_s*), void*>(void (*)(snumber*&, n_Procs_s*), void*); 174 template bool CxxTest::equals<int, int>(int, int); 175 template bool CxxTest::equals<n_coeffType, n_coeffType>(n_coeffType, n_coeffType); 176 template bool CxxTest::equals<snumber* (*)(long, n_Procs_s*), snumber* (*)(long, n_Procs_s*)>(snumber* (*)(long, n_Procs_s*), snumber* (*)(long, n_Procs_s*)); 177 template bool CxxTest::equals<snumber* (*)(snumber*, snumber*, n_Procs_s*), snumber* (*)(snumber*, snumber*, n_Procs_s*)>(snumber* (*)(snumber*, snumber*, n_Procs_s*), snumber* (*)(snumber*, snumber*, n_Procs_s*)); 178 template bool CxxTest::equals<void (*)(snumber**, n_Procs_s*), void (*)(snumber**, n_Procs_s*)>(void (*)(snumber**, n_Procs_s*), void (*)(snumber**, n_Procs_s*)); 179 template char* CxxTest::numberToString<long>(long, char*, long, unsigned int, unsigned int); 180 181 template void CxxTest::doAssertDiffers<ip_sring*, void*>(char const*, unsigned int, char const*, ip_sring*, char const*, void*, char const*); 182 template void CxxTest::doAssertEquals<short, int>(char const*, unsigned int, char const*, short, char const*, int, char const*); 183 184 template bool CxxTest::differs<ip_sring*, void*>(ip_sring*, void*); 185 template bool CxxTest::equals<short, int>(short, int); 186 156 187 #endif /* TESTS_COMMON_H */ -
libpolys/tests/cxxtest/Root.cpp
re62a1d r35564a5 16 16 #include <cxxtest/ValueTraits.cpp> 17 17 18 19 template char* CxxTest::numberToString<double>(double, char*, double, unsigned int, unsigned int); 20 template char* CxxTest::numberToString<unsigned int>(unsigned int, char*, unsigned int, unsigned int, unsigned int); 21 template char* CxxTest::numberToString<unsigned long>(unsigned long, char*, unsigned long, unsigned int, unsigned int); 22 template std::basic_ostream<char, std::char_traits<char> >& std::operator<< <std::char_traits<char> >(std::basic_ostream<char, std::char_traits<char> >&, char const*); 23 template void CxxTest::doAssertDelta<float, float, float>(char const*, unsigned int, char const*, float, char const*, float, char const*, float, char const*); 24 template bool CxxTest::delta<float, float, float>(float, float, float); 25 26 18 27 #endif // __cxxtest__Root_cpp__
Note: See TracChangeset
for help on using the changeset viewer.