Changeset 35fb36 in git


Ignore:
Timestamp:
Feb 2, 2000, 3:27:10 PM (24 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', 'fe61d9c35bf7c61f2b6cbf1b56e25e2f08d536cc')
Children:
eb508c56858974e93821395bcb17cc4d7c11bcf7
Parents:
b011fceaefa6d01d9450f44316e415cf4231e3da
Message:
*hannes: SHITED_EXP fix


git-svn-id: file:///usr/local/Singular/svn/trunk@4112 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
Singular
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • Singular/polys-impl.h

    rb011fc r35fb36  
    44*  Computer Algebra System SINGULAR     *
    55****************************************/
    6 /* $Id: polys-impl.h,v 1.43 2000-01-26 18:10:53 Singular Exp $ */
     6/* $Id: polys-impl.h,v 1.44 2000-02-02 14:27:01 Singular Exp $ */
    77
    88/***************************************************************
     
    3232union s_exp
    3333{
     34#ifdef HAVE_SHIFTED_EXPONENTS
     35   long           e[VARS +1];
     36   unsigned long  l[VARS +1];
     37#else
    3438   Exponent_t     e[VARS +1];
    3539   unsigned long  l[(VARS +1)/(sizeof(long)/sizeof(Exponent_t))];
     40#endif
    3641};
    3742
     
    540545 *
    541546 * Misc. things
    542  * 
     547 *
    543548 *
    544549 ***************************************************************/
     
    554559  pDBShortDivisibleBy(a, sev_a, b, not_sev_b, __FILE__, __LINE__)
    555560BOOLEAN pDBShortDivisibleBy(poly p1, unsigned long sev_1,
    556                             poly p2, unsigned long not_sev_2, 
     561                            poly p2, unsigned long not_sev_2,
    557562                            char* f, int l);
    558563#else
  • Singular/tok.h

    rb011fc r35fb36  
    77* ABSTRACT: tokens, types for interpreter; general macros
    88*/
    9 /* $Id: tok.h,v 1.37 2000-02-01 15:29:27 Singular Exp $ */
     9/* $Id: tok.h,v 1.38 2000-02-02 14:27:10 Singular Exp $ */
    1010
    1111#ifndef MYYSTYPE
     
    4545#define EXPONENT_T long
    4646/* Define the size of exponent */
     47#undef SIZEOF_EXPONENT
    4748#define SIZEOF_EXPONENT SIZEOF_LONG
    4849#endif
Note: See TracChangeset for help on using the changeset viewer.