Changeset 703b5a3 in git
- Timestamp:
- Feb 5, 2002, 2:09:22 PM (22 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 816fb200cf9ea3e46a9fe17b49e7a95c7189a48f
- Parents:
- 28e0ac8cfc405def682d3274f90c18f7d6cc46f5
- Location:
- Singular
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/fast_maps.cc
r28e0ac8 r703b5a3 7 7 * Author: obachman (Olaf Bachmann) 8 8 * Created: 02/01 9 * Version: $Id: fast_maps.cc,v 1.2 8 2002-01-20 11:44:48Singular Exp $9 * Version: $Id: fast_maps.cc,v 1.29 2002-02-05 13:09:05 Singular Exp $ 10 10 *******************************************************************/ 11 11 #include "mod2.h" … … 322 322 for (int i= 0; i < m_id->n; i++) 323 323 { 324 sBucketDestroyAdd(m_id->buckets[i], &(res->m[i]), &l); 324 if (m_id->buckets[i]!=NULL) 325 sBucketDestroyAdd(m_id->buckets[i], &(res->m[i]), &l); 325 326 } 326 327 omFree(m_id); … … 375 376 // do the optimization step 376 377 #if HAVE_MAP_OPTIMIZE > 0 377 maPoly_Optimize(mp, src_r);378 if (mp!=NULL) maPoly_Optimize(mp, src_r); 378 379 #endif 379 380 if (TEST_OPT_PROT) … … 395 396 if (dest_r != image_r) 396 397 { 397 if (no_sort)398 res_image_id = idrShallowCopyR_NoSort(res_dest_id, dest_r, image_r);399 else398 //if (no_sort) see Old/m134si.tst 399 // res_image_id = idrShallowCopyR_NoSort(res_dest_id, dest_r, image_r); 400 //else 400 401 res_image_id = idrShallowCopyR(res_dest_id, dest_r, image_r); 401 402 id_ShallowDelete(&res_dest_id, dest_r); -
Singular/ipid.cc
r28e0ac8 r703b5a3 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: ipid.cc,v 1. 59 2002-02-04 12:06:53Singular Exp $ */4 /* $Id: ipid.cc,v 1.60 2002-02-05 13:09:22 Singular Exp $ */ 5 5 6 6 /* … … 494 494 while ((s!=h) && (s!=NULL)) s=s->next; 495 495 if (s==NULL) killhdl2(h,&(currRing->idroot),currRing); 496 else killhdl2(h,&IDROOT, NULL);496 else killhdl2(h,&IDROOT,currRing); 497 497 } 498 498 #endif /* HAVE_NAMESPACES */
Note: See TracChangeset
for help on using the changeset viewer.