Changeset 326c78 in git for Singular/ideals.cc


Ignore:
Timestamp:
Dec 5, 1997, 6:44:54 PM (26 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
ab8279918a4c01e4fc36c8f6092a2c3d9f087332
Parents:
dbe33ad84b9082ecd9e8734be8728254ffdedec4
Message:
* hannes: ficx to ideals.cc: avoid pGetExp(p,0)


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

Legend:

Unmodified
Added
Removed
  • Singular/ideals.cc

    rdbe33ad r326c78  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ideals.cc,v 1.12 1997-12-03 16:58:42 obachman Exp $ */
     4/* $Id: ideals.cc,v 1.13 1997-12-05 17:44:54 Singular Exp $ */
    55/*
    66* ABSTRACT - all basic methods to manipulate ideals
     
    22842284      {
    22852285        i = 0;
    2286         j = pGetExp(p,i);
    2287         while ((i<=pVariables) && (j == 0))
     2286        do
    22882287        {
    22892288          i++;
    22902289          j = pGetExp(p,i);
    22912290        }
     2291        while ((i<=pVariables) && (j == 0));
    22922292        if (i>pVariables) b = TRUE;
    22932293      }
Note: See TracChangeset for help on using the changeset viewer.