Changeset a52291 in git for factory/cf_factory.h


Ignore:
Timestamp:
Nov 24, 2011, 2:35:53 PM (12 years ago)
Author:
Martin Lee <martinlee84@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
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
Message:
replacing MP_INT by mpz_t

Conflicts:

	factory/cf_factory.h
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/cf_factory.h

    r1c48503 ra52291  
    2828    static InternalCF * basic ( int type, const char * const str );
    2929    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 );
    3131    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 );
    3333    static InternalCF * poly ( const Variable & v, int exp, const CanonicalForm & c );
    3434    static InternalCF * poly ( const Variable & v, int exp = 1 );
    3535};
    3636
    37 
    38 MP_INT getmpi ( InternalCF * value, bool symmetric = true );
     37mpz_ptr getmpi ( InternalCF * value, bool symmetric = true );
    3938
    4039#endif /* ! INCL_CF_FACTORY_H */
Note: See TracChangeset for help on using the changeset viewer.