Changeset 3fe3da0 in git for polys/polys-impl.h
- Timestamp:
- Jun 8, 2010, 11:12:47 AM (13 years ago)
- Branches:
- (u'spielwiese', '379ec2d037299db64c43fe3550b5ba8fe508dbe5')
- Children:
- 01e7a1d2a92546f79319f8b6368955396525c869
- Parents:
- e094491d6d4e235085c9dd1be97168a376bb8120
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2010-06-08 11:12:47+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:55:02+01:00
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
polys/polys-impl.h
re09449 r3fe3da0 16 16 * 17 17 ***************************************************************/ 18 #include <kernel/structs.h> 19 #include <omalloc/omalloc.h> 18 #include <omalloc.h> 20 19 21 20 /*************************************************************** … … 24 23 * 25 24 ***************************************************************/ 26 27 #ifndef NDEBUG28 #define VARS (10) /*max. number of variables as constant*/29 #else30 #ifdef __GNUC__31 #define VARS (0)32 #else33 #define VARS (1)34 #endif35 #endif36 25 37 26 struct spolyrec … … 39 28 poly next; // next needs to be the first field 40 29 number coef; // and coef the second --- do not change this !!! 41 unsigned long exp[ VARS];// make sure that exp is aligned30 unsigned long exp[1]; // make sure that exp is aligned 42 31 }; 43 32 #define POLYSIZE (sizeof(poly) + sizeof(number))
Note: See TracChangeset
for help on using the changeset viewer.