Changeset b9852e in git


Ignore:
Timestamp:
Nov 22, 1999, 3:22:09 PM (24 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
c4a5d8b79deb884bfced01c42a6ea982660e2f68
Parents:
825d7918fcbe79616ea2d634e4a55bfefa50b93f
Message:
*hannes: fixed endianess bug: ordsgn


git-svn-id: file:///usr/local/Singular/svn/trunk@3872 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • Singular/ring.cc

    r825d79 rb9852e  
    22*  Computer Algebra System SINGULAR     *
    33****************************************/
    4 /* $Id: ring.cc,v 1.91 1999-11-21 12:26:48 Singular Exp $ */
     4/* $Id: ring.cc,v 1.92 1999-11-22 14:22:09 Singular Exp $ */
    55
    66/*
     
    30023002  r->ordsgn=(long *)Alloc(r->pCompLSize*sizeof(long));
    30033003
     3004#ifndef WORDS_BIGENDIAN
    30043005  for(j=r->pCompLowIndex;j<=r->pCompHighIndex;j++)
    30053006  {
     
    30073008      = tmp_ordsgn[j-r->pCompLowIndex];
    30083009  }
     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
    30093017
    30103018  Free((ADDRESS)tmp_ordsgn,(2*(n+r->N)*sizeof(long)));
Note: See TracChangeset for help on using the changeset viewer.