Changeset 760a78f in git for libpolys/polys/simpleideals.h


Ignore:
Timestamp:
Apr 28, 2011, 2:50:43 PM (13 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
aec5c92fa3e0f853348936026c999351aa972656
Parents:
4c6e42085a4a443ab70a8774732655228f25f63c
git-author:
Hans Schoenemann <hannes@mathematik.uni-kl.de>2011-04-28 14:50:43+02:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:31:30+01:00
Message:
less warnings: unused variables, unused debug stuff, const in result
   type, inline without procedure body
File:
1 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/simpleideals.h

    r4c6e420 r760a78f  
    2121  #define MATROWS(i) ((i)->nrows)
    2222  #define MATELEM(mat,i,j) ((mat)->m)[MATCOLS((mat)) * ((i)-1) + (j)-1]
    23    
     23
    2424};
    2525
     
    4949extern omBin sip_sideal_bin;
    5050
    51 #ifdef PDEBUG
    52 ideal idDBInit (int size, int rank, const char *f, int l);
    53 #define idInit(A,B) idDBInit(A,B,__FILE__,__LINE__)
    54 #else
    5551/*- creates an ideal -*/
    5652ideal idInit (int size, int rank=1);
    57 #endif
     53
    5854/*- deletes an ideal -*/
    5955void id_Delete (ideal* h, ring r);
     
    7167#endif
    7268
    73 #ifdef PDEBUG
    74 ideal id_DBCopy(ideal h1,const char *f,int l, const ring r);
    75 #define id_Copy(A,R) id_DBCopy(A,__FILE__,__LINE__,R)
    76 #else
    7769ideal id_Copy (ideal h1,const ring r);
    78 #endif
     70
    7971  /*adds two ideals without simplifying the result*/
    8072ideal id_SimpleAdd (ideal h1,ideal h2, const ring r);
Note: See TracChangeset for help on using the changeset viewer.