Changeset e6908a0 in git
- Timestamp:
- Nov 22, 1999, 5:30:01 PM (24 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- 212fc04aaf4a4730cceeb9f21ea8aec710514c30
- Parents:
- f345ed064d1aad1b7be479be2c3b1fa048ae58c5
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/ring.cc
rf345ed re6908a0 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: ring.cc,v 1.9 2 1999-11-22 14:22:09Singular Exp $ */4 /* $Id: ring.cc,v 1.93 1999-11-22 16:30:01 Singular Exp $ */ 5 5 6 6 /* … … 3081 3081 if (r->order[0] == ringorder_s) 3082 3082 { 3083 if (r->pCompIndex == 1) 3083 /* l[0] is occupied by ringorder_s, 3084 * does l[1] contain the component-number ? */ 3085 if (r->pCompIndex < 2*sizeof(long)/sizeof(Exponent_t)) /* e-index of l[2] */ 3084 3086 r->pOrdIndex = 2; 3085 3087 else 3086 3088 r->pOrdIndex = 1; 3087 3089 } 3088 else if (r->pCompIndex == 0)3090 else if (r->pCompIndex < sizeof(long)/sizeof(Exponent_t)) 3089 3091 r->pOrdIndex=1; 3090 3092 else … … 3135 3137 void rDebugPrint(ring r) 3136 3138 { 3139 if (r==NULL) 3140 { 3141 PrintS("NULL ?\n"); 3142 return; 3143 } 3137 3144 char *TYP[]={"ro_dp","ro_wp","ro_cp","ro_syzcomp", "ro_syz", "ro_none"}; 3138 3145 int i,j;
Note: See TracChangeset
for help on using the changeset viewer.