Changeset 8e086c in git


Ignore:
Timestamp:
Feb 21, 2007, 11:02:47 AM (17 years ago)
Author:
Michael Brickenstein <bricken@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
7a7d813adf208ec7a9f3cb07b00a9dab84ea015e
Parents:
39441befda72c2c8eb57c106c2089b41cb099032
Message:
*bricken: fixed leak in trivial syz


git-svn-id: file:///usr/local/Singular/svn/trunk@9875 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • kernel/tgb.cc

    r39441be r8e086c  
    55*  Computer Algebra System SINGULAR     *
    66****************************************/
    7 /* $Id: tgb.cc,v 1.143 2007-02-21 08:35:09 bricken Exp $ */
     7/* $Id: tgb.cc,v 1.144 2007-02-21 10:02:47 bricken Exp $ */
    88/*
    99* ABSTRACT: slimgb and F4 implementation
     
    710710    loop
    711711      {
    712   if (pGetExp(p1, i)-pGetExp(m,i) + pGetExp(p2, i) > pGetExp(bound,i))   return FALSE;
     712  if (pGetExp(p1, i)-pGetExp(m,i) + pGetExp(p2, i) > pGetExp(bound,i))  {
     713    pDelete(&m);
     714    return FALSE;}
    713715  if (i == pVariables){
    714716    pDelete(&m);
     
    29902992#endif
    29912993//len input and out: Idea: reverse addition
     2994#ifndef NORO_NON_POLY
    29922995std::vector<NoroPlaceHolder> noro_red(poly p, int &len, NoroCache* cache,slimgb_alg* c){
    29932996  std::vector<NoroPlaceHolder> res;
     
    30103013    return res;
    30113014}
    3012 
     3015#endif
    30133016
    30143017#endif
Note: See TracChangeset for help on using the changeset viewer.