Changeset 6fcb1b3 in git
- Timestamp:
- Feb 23, 2012, 11:00:04 PM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 7347dfb614641b54c125074951559ca8b65b5ea3
- Parents:
- 1a9dc5ff3e8396b7eb0f03fb0ee57fdcae4a5c74
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-02-23 23:00:04+01:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-02-24 16:11:23+01:00
- Location:
- libpolys
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/misc/Makefile.am
r1a9dc5 r6fcb1b3 22 22 23 23 libmisc_includedir = $(includedir)/singular/misc 24 libmisc_include_HEADERS = mylimits.h options.h intvec.h int64vec.h auxiliary.h 24 libmisc_include_HEADERS = mylimits.h options.h intvec.h int64vec.h 25 nodist_libmisc_include_HEADERS = auxiliary.h 25 26 26 27 nodist_libmisc_la_SOURCES = auxiliary.h -
libpolys/misc/mylimits.h
r1a9dc5 r6fcb1b3 21 21 22 22 23 // #define ULONG_MAX (~0UL) // ?? 23 24 #define ULONG_MAX (~0L) 24 25 26 // TODO: fixing the following BUG (!?) leads to wrong ring::bitmask 27 // #if ~0UL != 4294967295UL 25 28 #if ~0UL == 4294967295UL 26 29 #define LONG_MAX 9223372036854775807L -
libpolys/polys/monomials/ring.cc
r1a9dc5 r6fcb1b3 11 11 #include <math.h> 12 12 13 #include "config.h" 14 13 15 #include <omalloc/omalloc.h> 16 17 #include <misc/auxiliary.h> 18 #include <misc/mylimits.h> 14 19 #include <misc/options.h> 15 20 #include <misc/int64vec.h> -
libpolys/polys/monomials/ring.h
r1a9dc5 r6fcb1b3 37 37 struct sip_smap; 38 38 typedef struct sip_smap * map; 39 40 41 #if SIZEOF_LONG == 442 typedef long long int64;43 #elif SIZEOF_LONG == 844 typedef long int64;45 #else46 #error int64 undefined47 #endif48 39 49 40 /* the function pointer types */
Note: See TracChangeset
for help on using the changeset viewer.