Changeset b5396f0 in git


Ignore:
Timestamp:
Jan 29, 2015, 3:06:05 PM (9 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
7414647cd07f0b22babd59bbf5a086fa56ddd830
Parents:
100bd496fb3125687ec86ff10fc3604c78620e47
Message:
changes for SINGULAR_3_1: cfInt returns long
Location:
libpolys/coeffs
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • libpolys/coeffs/OPAE.cc

    r100bd4 rb5396f0  
    3434number  nAEInitMPZ     (mpz_t m, const coeffs r); //nachgucken/fragen
    3535int     nAESize        (number a, const coeffs r);///
    36 int     nAEInt         (number &a, const coeffs r);
     36long    nAEInt         (number &a, const coeffs r);
    3737number  nAEMPZ         (number a, const coeffs r); //nachgucken/fragen
    3838number  nAENeg         (number c, const coeffs r);
     
    156156}
    157157
    158 int nAEInt(number &, const coeffs)
     158long nAEInt(number &, const coeffs)
    159159{
    160160    return 1;
  • libpolys/coeffs/OPAEQ.cc

    r100bd4 rb5396f0  
    3434number  nAEQInitMPZ     (mpz_t m, const coeffs r); //nachgucken/fragen
    3535int     nAEQSize        (number a, const coeffs r);///
    36 int     nAEQInt         (number &a, const coeffs r);
     36long    nAEQInt         (number &a, const coeffs r);
    3737number  nAEQMPZ         (number a, const coeffs r); //nachgucken/fragen
    3838number  nAEQNeg         (number c, const coeffs r);
     
    151151}
    152152
    153 int nAEQInt(number &, const coeffs)
     153long nAEQInt(number &, const coeffs)
    154154{
    155155    return 1;
  • libpolys/coeffs/OPAEp.cc

    r100bd4 rb5396f0  
    3535number  nAEpInitMPZ     (mpz_t m, const coeffs r); //nachgucken/fragen
    3636int     nAEpSize        (number a, const coeffs r);///
    37 int     nAEpInt         (number &a, const coeffs r);
     37long    nAEpInt         (number &a, const coeffs r);
    3838number  nAEpMPZ         (number a, const coeffs r); //nachgucken/fragen
    3939number  nAEpNeg         (number c, const coeffs r);
     
    159159}
    160160
    161 int nAEpInt(number &, const coeffs)
     161long nAEpInt(number &, const coeffs)
    162162{
    163163    return 1;
Note: See TracChangeset for help on using the changeset viewer.