Changeset f0e41bc in git


Ignore:
Timestamp:
Nov 5, 1999, 4:54:29 PM (24 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
9d0697170908a6e9669c18eaf6ea6c461ed24375
Parents:
0a61ade6e7f3bac9e3585cb4ce421aa9f247f30d
Message:
*hannes: fixed bug in rComplete(wrong assumption)


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

Legend:

Unmodified
Added
Removed
  • Singular/ring.cc

    r0a61ad rf0e41bc  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ring.cc,v 1.79 1999-11-02 15:19:10 Singular Exp $ */
     4/* $Id: ring.cc,v 1.80 1999-11-05 15:54:29 Singular Exp $ */
    55
    66/*
     
    24702470
    24712471  // fill in some empty slots with variables not already covered
    2472   // v0 is special, is therefore already covered
    2473   assume(v[0]!=-1);
     2472  // v0 is special, is therefore normally already covered
     2473  // but if not:
     2474  if (v[0]== -1)
     2475  {
     2476    if (prev_ordsgn==1)
     2477    {
     2478      rO_Align(j, j_bits);
     2479      rO_LexVars(j, j_bits, 0,0, prev_ordsgn,tmp_ordsgn,v,BITS_PER_LONG);
     2480    }
     2481    else
     2482    {
     2483      rO_Align(j, j_bits);
     2484      rO_LexVars_neg(j, j_bits, 0,0, prev_ordsgn,tmp_ordsgn,v,BITS_PER_LONG);
     2485    }
     2486  }
     2487  // the variables
    24742488  for(i=1 ; i<r->N+1 ; i++)
    24752489  {
     
    29162930
    29172931  // fill in some empty slots with variables not already covered
    2918   // v0 is special, is therefore already covered
    2919   assume(v[0]!=-1);
    2920   for(i=1 ; i<r->N+1 ; i++)
     2932  // v0 is special, is therefore normally already covered
     2933  // but if not:
     2934  for(i=0 ; i<r->N+1 ; i++)
    29212935  {
    29222936    if(v[i]==(-1))
Note: See TracChangeset for help on using the changeset viewer.