Changeset 8710ff0 in git for factory/cf_factory.h


Ignore:
Timestamp:
Sep 29, 2012, 1:49:36 PM (12 years ago)
Author:
Martin Lee <martinlee84@…>
Branches:
(u'spielwiese', '4a9821a93ffdc22a6696668bd4f6b8c9de3e6c5f')
Children:
63e72b40a6237e50811b0e8745201177d25cb979
Parents:
d30a39922dc390f97b6cd257b2e7c55d483f4159
git-author:
Martin Lee <martinlee84@web.de>2012-09-29 13:49:36+02:00
git-committer:
Martin Lee <martinlee84@web.de>2012-10-19 11:05:30+02:00
Message:
chg: 64bit integers in factory by Adi Popescu
File:
1 edited

Legend:

Unmodified
Added
Removed
  • factory/cf_factory.h

    rd30a399 r8710ff0  
    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.