Changeset dc093ce in git for coeffs/gnumpc.cc


Ignore:
Timestamp:
May 5, 2010, 4:35:03 PM (14 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
3510a61a2a6264c7487502f0c82c410e2f92369f
Parents:
3bc01c780d4a0447782ed11242b0f51f4fda6f5f
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2010-05-05 16:35:03+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:51:40+01:00
Message:
Switched aRing and r to "src, dst"
File:
1 edited

Legend:

Unmodified
Added
Removed
  • coeffs/gnumpc.cc

    r3bc01c7 rdc093ce  
    3333#endif
    3434
    35 #ifndef assume
    36 #  define assume(a) if(!(a)){ Werror( "Assumption: is wrong: %s\n", #a ); };
    37 #endif
     35// #ifndef assume
     36// #  define assume(a) if(!(a)){ Werror( "Assumption: is wrong: %s\n", #a ); };
     37// #endif
    3838
    3939static const n_coeffType ID = n_long_C;
    4040
    41 number ngcMapQ(number from, const coeffs r, const coeffs aRing)
     41number ngcMapQ(number from, const coeffs aRing, const coeffs r)
    4242{
    4343  assume( getCoeffType(r) == ID );
     
    5353}
    5454
    55 static number ngcMapLongR(number from, const coeffs r, const coeffs aRing)
     55static number ngcMapLongR(number from, const coeffs aRing, const coeffs r)
    5656{
    5757  assume( getCoeffType(r) == ID );
     
    6767}
    6868
    69 static number ngcMapR(number from, const coeffs r, const coeffs aRing)
     69static number ngcMapR(number from, const coeffs aRing, const coeffs r)
    7070{
    7171  assume( getCoeffType(r) == ID );
     
    8181}
    8282
    83 static number ngcMapP(number from, const coeffs r, const coeffs aRing)
     83static number ngcMapP(number from, const coeffs aRing, const coeffs r)
    8484{
    8585  assume( getCoeffType(r) == ID );
     
    9494
    9595
    96 static number ngcCopyMap(number from, const coeffs r, const coeffs aRing)
     96static number ngcCopyMap(number from, const coeffs aRing, const coeffs r)
    9797{
    9898  assume( getCoeffType(r) == ID );
Note: See TracChangeset for help on using the changeset viewer.