Changeset 15da55 in git


Ignore:
Timestamp:
Feb 1, 2000, 4:29:27 PM (24 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '5b153614cbc72bfa198d75b1e9e33dab2645d9fe')
Children:
ed6e6557957211a7230da12dd13ae48e32e11b2a
Parents:
912f69a91e83986085caaac618d456b924c0478e
Message:
*hannes: dependecies on HAVE_SHIFTED_EXPONENTS moved from mod2.h.in to tok.h


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

Legend:

Unmodified
Added
Removed
  • Singular/mod2.h.in

    r912f69 r15da55  
    55 *          DO NOT EDIT!
    66 *
    7  *  Version: $Id: mod2.h.in,v 1.80 2000-01-26 18:10:52 Singular Exp $
     7 *  Version: $Id: mod2.h.in,v 1.81 2000-02-01 15:29:26 Singular Exp $
    88 *******************************************************************/
    99#ifndef MOD2_H
     
    265265#endif
    266266
    267 #ifdef HAVE_SHIFTED_EXPONENTS
    268 /* Define the type of the exponents to be used in monomials */
    269 #undef EXPONENT_T
    270 #define EXPONENT_T long
    271 /* Define the size of exponent */
    272 #define SIZEOF_EXPONENT SIZEOF_SHORT
    273 #endif
    274 
    275267/*******************************************************************
    276268 * Miscellanous Defines
  • Singular/tok.h

    r912f69 r15da55  
    77* ABSTRACT: tokens, types for interpreter; general macros
    88*/
    9 /* $Id: tok.h,v 1.36 2000-01-11 17:51:15 Singular Exp $ */
     9/* $Id: tok.h,v 1.37 2000-02-01 15:29:27 Singular Exp $ */
    1010
    1111#ifndef MYYSTYPE
     
    3636#define min(A,B) ((A) < (B) ? (A) : (B))
    3737#endif
     38
     39/* the following defines should really go into mod2.h,
     40   but configure dislikes it */
     41
     42#ifdef HAVE_SHIFTED_EXPONENTS
     43/* Define the type of the exponents to be used in monomials */
     44#undef EXPONENT_T
     45#define EXPONENT_T long
     46/* Define the size of exponent */
     47#define SIZEOF_EXPONENT SIZEOF_LONG
     48#endif
     49
    3850
    3951/* the follwing defines for infix operators should not be changed: *
Note: See TracChangeset for help on using the changeset viewer.