Changeset c8e030 in git
- Timestamp:
- Feb 8, 2012, 3:48:14 PM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- cc3240c506fdb572293019718b6e949f582d6108
- Parents:
- e71b679a2b45108ca67104be680aeeab6fb0b2b5
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2012-02-08 15:48:14+01:00
- git-committer:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2012-02-08 15:49:55+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/polys/ext_fields/transext.cc
re71b67 rc8e030 1046 1046 assume(src == dst->extRing->cf); 1047 1047 poly p = p_One(dst->extRing); 1048 p_SetCoeff(p, n_Copy(a, src), dst->extRing); 1048 number na=n_Copy(a, src); 1049 n_Normalize(na, src); 1050 p_SetCoeff(p, na, dst->extRing); 1049 1051 fraction f = (fraction)omAlloc0Bin(fractionObjectBin); 1050 1052 NUM(f) = p; DEN(f) = NULL; COM(f) = 0; … … 1233 1235 return NULL; /// default 1234 1236 } 1237 #if 0 1238 nMapFunc ntSetMap_T(const coeffs src, const coeffs dst) 1239 { 1240 nMapFunc n=ntSetMap(src,dst); 1241 if (n==ntCopyAlg) printf("n=ntCopyAlg\n"); 1242 else if (n==ntCopyMap) printf("n=ntCopyMap\n"); 1243 else if (n==ntMapUP) printf("n=ntMapUP\n"); 1244 else if (n==ntMap0P) printf("n=ntMap0P\n"); 1245 else if (n==ntMapP0) printf("n=ntMapP0\n"); 1246 else if (n==ntMap00) printf("n=ntMap00\n"); 1247 else if (n==NULL) printf("n=NULL\n"); 1248 else printf("n=?\n"); 1249 return n; 1250 } 1251 #endif 1235 1252 1236 1253 void ntKillChar(coeffs cf)
Note: See TracChangeset
for help on using the changeset viewer.