Changeset 05fd55 in git


Ignore:
Timestamp:
Sep 20, 2012, 5:27:16 PM (12 years ago)
Author:
Adrian <adi_popescum@…>
Branches:
(u'spielwiese', '5b153614cbc72bfa198d75b1e9e33dab2645d9fe')
Children:
3feb05488fc45f2659a728850a9c71ad9c0cb838
Parents:
c879eea1669e963fb4c7287a3963abb287d00a49
git-author:
Adrian <adi_popescum@yahoo.de>2012-09-20 17:27:16+02:00
git-committer:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2012-10-22 11:18:06+02:00
Message:
64bits for Spielweise
Files:
4 edited

Legend:

Unmodified
Added
Removed
  • factory/canonicalform.cc

    rc879ee r05fd55  
    17961796CanonicalForm::genCoeff( int type, int i )
    17971797{
    1798     return CanonicalForm( CFFactory::basic( type, i ) );
     1798    return CanonicalForm( CFFactory::basic( type, (long)i ) );
    17991799}
    18001800
  • factory/cf_factory.cc

    rc879ee r05fd55  
    261261{
    262262    if ( v.level() == LEVELBASE )
    263         return CFFactory::basic( 1 );
     263        return CFFactory::basic( 1L );
    264264    else
    265265        return new InternalPoly( v, exp, 1 );
  • factory/int_poly.cc

    rc879ee r05fd55  
    10791079            else
    10801080            {
    1081                 last->next = new term( 0, c, 0 );
     1081                last->next = new term( 0, c, 0L );
    10821082                last = last->next;
    10831083            }
     
    13091309          else
    13101310            decRefCount();
    1311           return dummy; //is equal to CFFactory::basic (0) in this case
     1311          return dummy; //is equal to CFFactory::basic ( 0L ) in this case
    13121312        }
    13131313        if (is_imm(dummy))
  • libpolys/polys/clapconv.cc

    rc879ee r05fd55  
    2828#include <polys/ext_fields/transext.h>
    2929
    30 void out_cf(char *s1,const CanonicalForm &f,char *s2);
     30void out_cf(const char *s1,const CanonicalForm &f,const char *s2);
    3131
    3232static void conv_RecPP ( const CanonicalForm & f, int * exp, sBucket_pt result, ring r );
     
    105105    pIter( p );
    106106  }
    107   return result;
     107 return result;
    108108}
    109109
Note: See TracChangeset for help on using the changeset viewer.