Changeset a52291 in git for factory/cf_factory.h
- Timestamp:
- Nov 24, 2011, 2:35:53 PM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 8b46459e9dad8bec212484f1bfce347c45e41371
- Parents:
- 1c48503bfae9bb885752ba741bd0a236df633d13
- git-author:
- Martin Lee <martinlee84@web.de>2011-11-24 14:35:53+01:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-11-24 21:10:03+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/cf_factory.h
r1c48503 ra52291 28 28 static InternalCF * basic ( int type, const char * const str ); 29 29 static InternalCF * basic ( int type, int value, bool nonimm ); 30 static InternalCF * basic ( const MP_INT &num );30 static InternalCF * basic ( const mpz_ptr num ); 31 31 static InternalCF * rational ( int num, int den ); 32 static InternalCF * rational ( const MP_INT & num, const MP_INT &den, bool normalize );32 static InternalCF * rational ( const mpz_ptr num, const mpz_ptr den, bool normalize ); 33 33 static InternalCF * poly ( const Variable & v, int exp, const CanonicalForm & c ); 34 34 static InternalCF * poly ( const Variable & v, int exp = 1 ); 35 35 }; 36 36 37 38 MP_INT getmpi ( InternalCF * value, bool symmetric = true ); 37 mpz_ptr getmpi ( InternalCF * value, bool symmetric = true ); 39 38 40 39 #endif /* ! INCL_CF_FACTORY_H */
Note: See TracChangeset
for help on using the changeset viewer.