Changeset 51e69e in git


Ignore:
Timestamp:
Feb 23, 2008, 9:13:30 PM (15 years ago)
Author:
Viktor Levandovskyy <levandov@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
eb726a2ae5288034601f52c83e653e517d892418
Parents:
4d2ab5c1e54b41b2b02f7720e375b7983a98b89b
Message:
*levandov: update related to freegb


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

Legend:

Unmodified
Added
Removed
  • kernel/kspoly.cc

    r4d2ab5c r51e69e  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: kspoly.cc,v 1.13 2008-02-06 09:12:45 wienand Exp $ */
     4/* $Id: kspoly.cc,v 1.14 2008-02-23 20:13:30 levandov Exp $ */
    55/*
    66*  ABSTRACT -  Routines for Spoly creation and reductions
     
    200200  if (R != NULL)
    201201  {
    202     l1 = (R[Pair->i_r1])->GetpLength() - 1;
    203     l2 = (R[Pair->i_r2])->GetpLength() - 1;
     202    if (Pair->i_r1 == -1)
     203    {
     204      l1 = pLength(p1) - 1;
     205    }
     206    else
     207    {
     208      l1 = (R[Pair->i_r1])->GetpLength() - 1;
     209    }
     210    if (Pair->i_r2 == -1)
     211    {
     212      l2 = pLength(p2) - 1;
     213    }
     214    else
     215    {
     216      l2 = (R[Pair->i_r2])->GetpLength() - 1;
     217    }
    204218  }
    205219
Note: See TracChangeset for help on using the changeset viewer.