Changeset 443b19 in git


Ignore:
Timestamp:
Feb 28, 2012, 7:37:43 PM (12 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
Children:
1904c01400756ccb275671292dca1d9fad53222b
Parents:
00f64ac9b43243179e204ee189926ac5352574b9
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-02-28 19:37:43+01:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2014-04-30 17:09:44+02:00
Message:
Pass homogenizing weights to kStd
File:
1 edited

Legend:

Unmodified
Added
Removed
  • dyn_modules/syzextra/mod_main.cc

    r00f64a r443b19  
    912912
    913913
    914   tHomog hom=testHomog;
    915   intvec *w; //  = reinterpret_cast<intvec *>(atGet(h, "isHomog", INTVEC_CMD));
     914  intvec* w = reinterpret_cast<intvec *>(atGet(h, "isHomog", INTVEC_CMD));
     915  tHomog hom = testHomog;
    916916
    917917  //           int add_row_shift = 0;
    918918  //
    919   //           if (w!=NULL)
    920   //           {
    921   //             intvec * ww = ivCopy(w);
    922   //
     919  if (w!=NULL)
     920  {
     921    w = ivCopy(w);
    923922  //             add_row_shift = ww->min_in();
    924923  //
     
    927926  //             if (idTestHomModule(I, currQuotient, ww))
    928927  //             {
    929   //               hom = isHomog;
     928    hom = isHomog;
    930929  //               w = ww;
    931930  //             }
     
    937936  //               hom=testHomog;
    938937  //             }
    939   //           }
     938  }
    940939
    941940
     
    950949  idTest(J);
    951950
    952   if (w!=NULL) delete w;
    953   //          if (w!=NULL)
    954   //            atSet(res, omStrDup("isHomog"), w, INTVEC_CMD);
     951  if (w!=NULL)
     952    atSet(res, omStrDup("isHomog"), w, INTVEC_CMD);
     953  //             if (w!=NULL) delete w;
    955954
    956955  res->rtyp = MODUL_CMD;
Note: See TracChangeset for help on using the changeset viewer.