Changeset e416b6 in git for Singular


Ignore:
Timestamp:
Jan 15, 1998, 5:16:23 PM (26 years ago)
Author:
Olaf Bachmann <obachman@…>
Branches:
(u'fieker-DuVal', '117eb8c30fc9e991c4decca4832b1d19036c4c65')(u'spielwiese', 'b4f17ed1d25f93d46dbe29e4b499baecc2fd51bb')
Children:
196a7bc15803450f7d2084029d82fb1aab0fe85a
Parents:
556acd683fd90074c0f666d70d62ce57c29260c9
Message:
* fixed COMP_NO_EXP_VECTOR_OPS for LITTLE ENDIAN


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

Legend:

Unmodified
Added
Removed
  • Singular/polys-impl.h

    r556acd re416b6  
    44*  Computer Algebra System SINGULAR     *
    55****************************************/
    6 /* $Id: polys-impl.h,v 1.10 1998-01-14 19:21:10 obachman Exp $ */
     6/* $Id: polys-impl.h,v 1.11 1998-01-15 16:16:23 obachman Exp $ */
    77
    88/***************************************************************
     
    7070    monomial operations, i.e. does everything exponent-wise.
    7171 ***************************************************************/
    72 #define COMP_FAST
     72// #define COMP_FAST
    7373// #define COMP_DEBUG
    74 #define COMP_NO_EXP_VECTOR_OPS
     74// #define COMP_NO_EXP_VECTOR_OPS
    7575#define COMP_TRADITIONAL
    7676
     
    721721  const long* const lb = s1 + pVariables1W;
    722722#else
    723   const Exponent_t *s1 = (Exponent_t*) &(p1->exp[0]);
    724   const Exponent_t *s2 = (Exponent_t*) &(p2->exp[0]);
     723  const Exponent_t *s1 = (Exponent_t*) &(p1->exp[pVarLowIndex]);
     724  const Exponent_t *s2 = (Exponent_t*) &(p2->exp[pVarLowIndex]);
    725725  const Exponent_t* const lb = s1 + pVariables;
    726726  if (_pGetComp(p1) != _pGetComp(p2)) return FALSE;
Note: See TracChangeset for help on using the changeset viewer.