Changeset 7fee876 in git for libpolys/tests/coeffs_test.h
- Timestamp:
- Mar 16, 2012, 9:26:19 PM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- 5a72fe43aa1fbae0fb93ebbff5685375e726f93c
- Parents:
- ce1f78b09d525de2d3babcf986a9f4821e60ed00
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-03-16 21:26:19+01:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-03-17 05:41:42+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/tests/coeffs_test.h
rce1f78 r7fee876 234 234 } 235 235 236 237 if (getCoeffType(r) == n_GF) //some special test for GF 238 { 239 number z = nfPar (0, r); // also any integer instead of 0//? 240 clog << "Generator: "; PrintSized(z, r); 241 n_Delete(&z, r); 236 if (n_NumberOfParameters(r) > 0) 237 { 238 number z = n_Param(1, r); // also any integer instead of 0//? 239 PrintS("Parameter: "); PrintSized(z, r); 240 n_Delete(&z, r); 242 241 } 242 243 243 244 244 clog << "Char: " << n_GetChar(r) << endl; … … 294 294 case n_long_C: 295 295 { 296 TS_ASSERT_EQUALS( r->cfInit, ngcInit );297 TS_ASSERT_EQUALS( r->cfAdd, ngcAdd );298 TS_ASSERT_EQUALS( r->cfDelete, ngcDelete );296 // TS_ASSERT_EQUALS( r->cfInit, ngcInit ); 297 // TS_ASSERT_EQUALS( r->cfAdd, ngcAdd ); 298 // TS_ASSERT_EQUALS( r->cfDelete, ngcDelete ); 299 299 break; 300 300 } … … 308 308 case n_GF: 309 309 { 310 TS_ASSERT_EQUALS( r->cfInit, nfInit );311 TS_ASSERT_EQUALS( r->cfAdd, nfAdd );310 // TS_ASSERT_EQUALS( r->cfInit, nfInit ); 311 // TS_ASSERT_EQUALS( r->cfAdd, nfAdd ); 312 312 //TS_ASSERT_EQUALS( r->cfDelete, nfDelete ); 313 313 break;
Note: See TracChangeset
for help on using the changeset viewer.