Changeset 0ef842 in git
- Timestamp:
- Nov 24, 2006, 1:18:28 PM (17 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- 3504d7274c5b65041397e64fd259f10b923a19a4
- Parents:
- 3705d5c995e721d82fb6dad60d586e998ed821ca
- Location:
- kernel
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/polys.cc
r3705d5c r0ef842 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: polys.cc,v 1.1 1 2006-10-05 18:25:10Singular Exp $ */4 /* $Id: polys.cc,v 1.12 2006-11-24 12:18:27 Singular Exp $ */ 5 5 6 6 /* … … 404 404 { 405 405 result = q; 406 while ((q!=NULL) && (pGetComp(q)==k))406 do 407 407 { 408 408 pSetComp(q,0); … … 411 411 pIter(q); 412 412 } 413 while ((q!=NULL) && (pGetComp(q)==k)); 413 414 *p = q; 414 415 pNext(qq) = NULL; -
kernel/syz1.cc
r3705d5c r0ef842 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: syz1.cc,v 1.1 0 2004-11-09 14:55:01Singular Exp $ */4 /* $Id: syz1.cc,v 1.11 2006-11-24 12:18:28 Singular Exp $ */ 5 5 /* 6 6 * ABSTRACT: resolutions … … 2030 2030 syzstr->resolution = new intvec(syzstr->length+1); 2031 2031 SRes rP=syzstr->resPairs; 2032 (*syzstr->resolution)[0]2033 = si_max(1,(int)idRankFreeModule(syzstr->res[1],2034 (syzstr->syRing != NULL ? syzstr->syRing : currRing)));2032 assume(idRankFreeModule(syzstr->res[1], 2033 (syzstr->syRing != NULL ? syzstr->syRing : currRing))==syzstr->res[1]->rank); 2034 (*syzstr->resolution)[0] = syzstr->res[1]->rank; 2035 2035 while ((l<syzstr->length) && (rP[l]!=NULL)) 2036 2036 {
Note: See TracChangeset
for help on using the changeset viewer.