Changeset f0e41bc in git
- Timestamp:
- Nov 5, 1999, 4:54:29 PM (24 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- 9d0697170908a6e9669c18eaf6ea6c461ed24375
- Parents:
- 0a61ade6e7f3bac9e3585cb4ce421aa9f247f30d
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/ring.cc
r0a61ad rf0e41bc 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: ring.cc,v 1. 79 1999-11-02 15:19:10Singular Exp $ */4 /* $Id: ring.cc,v 1.80 1999-11-05 15:54:29 Singular Exp $ */ 5 5 6 6 /* … … 2470 2470 2471 2471 // 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 2474 2488 for(i=1 ; i<r->N+1 ; i++) 2475 2489 { … … 2916 2930 2917 2931 // fill in some empty slots with variables not already covered 2918 // v0 is special, is therefore already covered2919 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++) 2921 2935 { 2922 2936 if(v[i]==(-1))
Note: See TracChangeset
for help on using the changeset viewer.