Changeset 05fd55 in git
- Timestamp:
- Sep 20, 2012, 5:27:16 PM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 3feb05488fc45f2659a728850a9c71ad9c0cb838
- Parents:
- c879eea1669e963fb4c7287a3963abb287d00a49
- git-author:
- Adrian <adi_popescum@yahoo.de>2012-09-20 17:27:16+02:00
- git-committer:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2012-10-22 11:18:06+02:00
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/canonicalform.cc
rc879ee r05fd55 1796 1796 CanonicalForm::genCoeff( int type, int i ) 1797 1797 { 1798 return CanonicalForm( CFFactory::basic( type, i ) );1798 return CanonicalForm( CFFactory::basic( type, (long)i ) ); 1799 1799 } 1800 1800 -
factory/cf_factory.cc
rc879ee r05fd55 261 261 { 262 262 if ( v.level() == LEVELBASE ) 263 return CFFactory::basic( 1 );263 return CFFactory::basic( 1L ); 264 264 else 265 265 return new InternalPoly( v, exp, 1 ); -
factory/int_poly.cc
rc879ee r05fd55 1079 1079 else 1080 1080 { 1081 last->next = new term( 0, c, 0 );1081 last->next = new term( 0, c, 0L ); 1082 1082 last = last->next; 1083 1083 } … … 1309 1309 else 1310 1310 decRefCount(); 1311 return dummy; //is equal to CFFactory::basic ( 0) in this case1311 return dummy; //is equal to CFFactory::basic ( 0L ) in this case 1312 1312 } 1313 1313 if (is_imm(dummy)) -
libpolys/polys/clapconv.cc
rc879ee r05fd55 28 28 #include <polys/ext_fields/transext.h> 29 29 30 void out_cf(c har *s1,const CanonicalForm &f,char *s2);30 void out_cf(const char *s1,const CanonicalForm &f,const char *s2); 31 31 32 32 static void conv_RecPP ( const CanonicalForm & f, int * exp, sBucket_pt result, ring r ); … … 105 105 pIter( p ); 106 106 } 107 107 return result; 108 108 } 109 109
Note: See TracChangeset
for help on using the changeset viewer.