Changeset c879ee in git for factory/cf_factory.h


Ignore:
Timestamp:
Oct 19, 2012, 6:38:54 PM (12 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
05fd55e34baa83465ce4306966c9011d1a156232
Parents:
1bc7201c1a771fb5cc842ca4f475ba3ea91e697963e72b40a6237e50811b0e8745201177d25cb979
Message:
Merge pull request #193 from mmklee/64bitIntegersFactorySW

64bit integers factory sw
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/cf_factory.h

    r1bc7201 rc879ee  
    2121    static int gettype () { return currenttype; }
    2222    static void settype ( int type );
    23     static InternalCF * basic ( int value );
    24     static InternalCF * basic ( int type, int value );
     23    static InternalCF * basic ( long value );
     24    static InternalCF * basic ( int type, long value );
    2525    static InternalCF * basic ( const char * str );
    2626    static InternalCF * basic ( const char * str, int base );
    2727    static InternalCF * basic ( int type, const char * const str );
    28     static InternalCF * basic ( int type, int value, bool nonimm );
     28    static InternalCF * basic ( int type, long value, bool nonimm );
    2929    static InternalCF * basic ( const mpz_ptr num );
    30     static InternalCF * rational ( int num, int den );
     30    static InternalCF * rational ( long num, long den );
    3131    static InternalCF * rational ( const mpz_ptr num, const mpz_ptr den, bool normalize );
    3232    static InternalCF * poly ( const Variable & v, int exp, const CanonicalForm & c );
Note: See TracChangeset for help on using the changeset viewer.