Changeset b9852e in git
- Timestamp:
- Nov 22, 1999, 3:22:09 PM (24 years ago)
- Branches:
- (u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
- Children:
- c4a5d8b79deb884bfced01c42a6ea982660e2f68
- Parents:
- 825d7918fcbe79616ea2d634e4a55bfefa50b93f
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/ring.cc
r825d79 rb9852e 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 /* $Id: ring.cc,v 1.9 1 1999-11-21 12:26:48Singular Exp $ */4 /* $Id: ring.cc,v 1.92 1999-11-22 14:22:09 Singular Exp $ */ 5 5 6 6 /* … … 3002 3002 r->ordsgn=(long *)Alloc(r->pCompLSize*sizeof(long)); 3003 3003 3004 #ifndef WORDS_BIGENDIAN 3004 3005 for(j=r->pCompLowIndex;j<=r->pCompHighIndex;j++) 3005 3006 { … … 3007 3008 = tmp_ordsgn[j-r->pCompLowIndex]; 3008 3009 } 3010 #else 3011 for(j=r->pCompLowIndex;j<=r->pCompHighIndex;j++) 3012 { 3013 r->ordsgn[j] 3014 = tmp_ordsgn[j-r->pCompLowIndex]; 3015 } 3016 #endif 3009 3017 3010 3018 Free((ADDRESS)tmp_ordsgn,(2*(n+r->N)*sizeof(long)));
Note: See TracChangeset
for help on using the changeset viewer.