Changeset 2e4ec14 in git for kernel/tgb.cc


Ignore:
Timestamp:
Feb 21, 2013, 12:31:21 AM (11 years ago)
Author:
Yue Ren <ren@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
cd4f243f3aafc7080a52fa973f2d90493e4847f2
Parents:
6909cfb17ff34ff746782e3cb8cdb891e03521dd
git-author:
Yue Ren <ren@mathematik.uni-kl.de>2013-02-21 00:31:21+01:00
git-committer:
Yue Ren <ren@mathematik.uni-kl.de>2013-02-21 20:00:58+01:00
Message:
fix: -Wunused-parameter warnings
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/tgb.cc

    r6909cfb r2e4ec14  
    485485}
    486486
    487 wlen_type pELength (poly p, slimgb_alg * c, ring r)
     487wlen_type pELength (poly p, slimgb_alg * c, ring /*r*/)
    488488{
    489489  if(p == NULL)
     
    508508}
    509509
    510 wlen_type kEBucketLength (kBucket * b, poly lm, int sugar, slimgb_alg * ca)
     510wlen_type kEBucketLength (kBucket * b, poly lm, int /*sugar*/, slimgb_alg * ca)
    511511{
    512512  wlen_type s = 0;
     
    36223622
    36233623ideal
    3624 do_t_rep_gb (ring r, ideal arg_I, int syz_comp, BOOLEAN F4_mode, int deg_pos)
     3624do_t_rep_gb (ring /*r*/, ideal arg_I, int syz_comp, BOOLEAN F4_mode, int deg_pos)
    36253625{
    36263626  //  Print("QlogSize(0) %d, QlogSize(1) %d,QlogSize(-2) %d, QlogSize(5) %d\n", QlogSize(nlInit(0)),QlogSize(nlInit(1)),QlogSize(nlInit(-2)),QlogSize(nlInit(5)));
     
    39793979
    39803980static BOOLEAN
    3981 pair_better (sorted_pair_node * a, sorted_pair_node * b, slimgb_alg * c)
     3981pair_better (sorted_pair_node * a, sorted_pair_node * b, slimgb_alg * /*c*/)
    39823982{
    39833983  if(a->deg < b->deg)
     
    41824182
    41834183static void
    4184 multi_reduction_lls_trick (red_object * los, int losl, slimgb_alg * c,
     4184multi_reduction_lls_trick (red_object * los, int /*losl*/, slimgb_alg * c,
    41854185                           find_erg & erg)
    41864186{
     
    45044504
    45054505static void
    4506 canonicalize_region (red_object * los, int l, int u, slimgb_alg * c)
     4506canonicalize_region (red_object * los, int l, int u, slimgb_alg * /*c*/)
    45074507{
    45084508  assume (l <= u + 1);
     
    45144514}
    45154515
     4516#ifdef NDEBUG
     4517static void
     4518multi_reduction_find (red_object * los, int /*losl*/, slimgb_alg * c, int startf,
     4519                      find_erg & erg)
     4520#else
    45164521static void
    45174522multi_reduction_find (red_object * los, int losl, slimgb_alg * c, int startf,
    45184523                      find_erg & erg)
     4524#endif
    45194525{
    45204526  kStrategy strat = c->strat;
     
    46314637}
    46324638
    4633 static void sort_region_down (red_object * los, int l, int u, slimgb_alg * c)
     4639static void sort_region_down (red_object * los, int l, int u, slimgb_alg * /*c*/)
    46344640{
    46354641  int r_size = u - l + 1;
     
    48904896}
    48914897
    4892 void reduction_step::reduce (red_object * r, int l, int u)
     4898void reduction_step::reduce (red_object * /*r*/, int /*l*/, int /*u*/)
    48934899{
    48944900}
     
    50655071}
    50665072
    5067 void simple_reducer::pre_reduce (red_object * r, int l, int u)
    5068 {
    5069 }
     5073void simple_reducer::pre_reduce (red_object * /*r*/, int /*l*/, int /*u*/)
     5074{
     5075}
Note: See TracChangeset for help on using the changeset viewer.