Changeset 2d2e40 in git for libpolys/polys


Ignore:
Timestamp:
Dec 5, 2011, 2:54:08 PM (12 years ago)
Author:
Hans Schoenemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
1f03abac6bde42c766ce63555d33ee5bf00aa447
Parents:
1f2d3b43da540e3165c73bc71f9dd23f9ec5170f
Message:
fix: warning messages: unsed variable/parameter
Location:
libpolys/polys
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • libpolys/polys/ext_fields/algext.cc

    r1f2d3b r2d2e40  
    571571  return (number)p;
    572572}
    573 CanonicalForm naConvSingNFactoryN( number n, BOOLEAN setChar, const coeffs cf )
     573CanonicalForm naConvSingNFactoryN( number n, BOOLEAN /*setChar*/, const coeffs cf )
    574574{
    575575  naTest(n);
     
    639639#endif
    640640
    641 number naCopyExt(number a, const coeffs src, const coeffs dst)
     641number naCopyExt(number a, const coeffs src, const coeffs)
    642642{
    643643  fraction fa=(fraction)a;
  • libpolys/polys/matpol.cc

    r1f2d3b r2d2e40  
    728728}
    729729
    730 static void mp_FinalClean(matrix a, const ring R)
     730static void mp_FinalClean(matrix a, const ring)
    731731{
    732732  omFreeSize((ADDRESS)a->m,a->nrows*a->ncols*sizeof(poly));
     
    14571457/// entries of a are minors and go to result (only if not in R)
    14581458void mp_MinorToResult(ideal result, int &elems, matrix a, int r, int c,
    1459                      ideal R, const ring ri)
     1459                     ideal R, const ring)
    14601460{
    14611461  poly *q1;
  • libpolys/polys/monomials/p_polys.cc

    r1f2d3b r2d2e40  
    33073307 * NOTE: this only works for Frank's alg. & trans. fields
    33083308 */
    3309 poly n_PermNumber(const number z, const int *par_perm, const int OldPar, const ring src, const ring dst)
     3309poly n_PermNumber(const number z, const int *par_perm, const int , const ring src, const ring dst)
    33103310{
    33113311#if 0
  • libpolys/polys/monomials/ring.cc

    r1f2d3b r2d2e40  
    16041604#ifdef HAVE_PLURAL
    16051605  if (rIsPluralRing(r))
    1606     if( nc_rCopy(res, r, true) );
     1606    if( nc_rCopy(res, r, true) ) {}
    16071607#endif
    16081608
  • libpolys/polys/nc/ncSACache.h

    r1f2d3b r2d2e40  
    8888    };
    8989   
    90     virtual void History(const EHistoryType t, const CExponent a, const CExponent b, const poly p = NULL)
     90    virtual void History(const EHistoryType , const CExponent a, const CExponent b, const poly p = NULL)
    9191    {
    9292      PrintS("CCacheHash::History(a, b, [p])!\n");
  • libpolys/polys/simpleideals.cc

    r1f2d3b r2d2e40  
    12301230      if (cp>mod->rank)
    12311231      {
    1232         Print("## inv. rank %ld -> %d\n",mod->rank,cp);
     1232        Print("## inv. rank %ld -> %ld\n",mod->rank,cp);
    12331233        int k,l,o=mod->rank;
    12341234        mod->rank=cp;
  • libpolys/polys/sparsmat.cc

    r1f2d3b r2d2e40  
    528528poly sparse_mat::smDet()
    529529{
    530   int y;
    531530  poly res = NULL;
    532531
     
    938937  smpoly res, a, b;
    939938  poly ha, hr, x, y;
    940   int e, ip, ir, ia, lev;
     939  int e, ip, ir, ia;
    941940
    942941  if ((c == NULL) || (r == NULL))
     
    19851984static void sm_ExpMultDiv(poly t, const poly b, const poly c, const ring R)
    19861985{
    1987   int i;
    19881986  p_Test(t,R);
    19891987  p_LmTest(b,R);
     
    23722370{
    23732371  sparse_number_mat *linsolv;
    2374   ring origR;
    23752372  ring tmpR;
    23762373  ideal rr;
Note: See TracChangeset for help on using the changeset viewer.