Changeset de95ec in git
- Timestamp:
- Jan 6, 2009, 5:46:40 PM (14 years ago)
- Branches:
- (u'spielwiese', '91fdef05f09f54b8d58d92a472e9c4a43aa4656f')
- Children:
- fee4c232c2e228392bbbf89f63f4188ea34e9c61
- Parents:
- 0ec631113cffb5514bd57d9346933d09fcbbc548
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
kernel/ring.cc
r0ec631 rde95ec 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: ring.cc,v 1.10 6 2009-01-06 13:59:35Singular Exp $ */4 /* $Id: ring.cc,v 1.107 2009-01-06 16:46:40 Singular Exp $ */ 5 5 6 6 /* … … 515 515 #ifdef HAVE_RINGS 516 516 if (r->ringflaga != NULL) 517 omFree((ADDRESS)r->ringflaga);517 mpz_clear(r->ringflaga); 518 518 #endif 519 519 omFreeBin(r, ip_sring_bin); … … 1492 1492 #ifdef HAVE_RINGS 1493 1493 res->ringtype=r->ringtype; /* cring = 0 => coefficient field, cring = 1 => coeffs from Z/2^m */ 1494 //res->ringflaga=mpz_copy(r->ringflaga);1494 if (r->ringflaga!=NULL) mpz_set(res->ringflaga,r->ringflaga); 1495 1495 res->ringflagb=r->ringflagb; 1496 1496 #endif
Note: See TracChangeset
for help on using the changeset viewer.