Changeset 84fc1f in git
- Timestamp:
- Apr 25, 2012, 8:29:35 PM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- fe02b179f9d0d756e5341889d22afec48083e992
- Parents:
- 6f8d6f9137c56e72b78c6ae9c87f1d0d5e77bb97
- Files:
-
- 5 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
Singular/grammar.cc
r6f8d6f r84fc1f 105 105 #include <kernel/longrat.h> 106 106 #include <Singular/libparse.h> 107 #include <coeffs/bigintmat.h> 107 108 108 109 #if 0 -
Singular/grammar.y
r6f8d6f r84fc1f 42 42 #include <kernel/longrat.h> 43 43 #include <Singular/libparse.h> 44 #include <coeffs/bigintmat.h> 44 45 45 46 #if 0 -
Singular/idrec.h
r6f8d6f r84fc1f 11 11 #include <Singular/attrib.h> 12 12 #include <Singular/silink.h> 13 #include <misc/bigintmat.h>14 13 14 class bigintmat; 15 15 typedef union uutypes utypes; 16 16 union uutypes -
libpolys/coeffs/Makefile.am
r6f8d6f r84fc1f 27 27 numbers.cc rintegers.cc rmodulo2m.cc rmodulon.cc shortfl.cc \ 28 28 gnumpc.cc gnumpfl.cc longrat.cc longrat0.cc ffields.cc \ 29 modulop.cc mpr_complex.cc 29 modulop.cc mpr_complex.cc \ 30 bigintmat.cc 30 31 31 32 libcoeffs_la_SOURCES = $(SOURCES) … … 33 34 34 35 libcoeffs_includedir =$(includedir)/singular/coeffs 35 libcoeffs_include_HEADERS = coeffs.h numbers.h si_gmp.h gnumpc.h gnumpfl.h longrat.h modulop.h ffields.h rintegers.h rmodulo2m.h rmodulon.h shortfl.h mpr_complex.h mpr_global.h 36 libcoeffs_include_HEADERS = coeffs.h numbers.h si_gmp.h gnumpc.h gnumpfl.h longrat.h modulop.h ffields.h rintegers.h rmodulo2m.h rmodulon.h shortfl.h mpr_complex.h mpr_global.h \ 37 bigintmat.h 36 38 37 39 -
libpolys/coeffs/bigintmat.cc
r6f8d6f r84fc1f 7 7 #include <kernel/mod2.h> 8 8 //#include <kernel/options.h> 9 #include <misc/bigintmat.h>9 #include "bigintmat.h" 10 10 #include <omalloc/omalloc.h> 11 11 #include <coeffs/longrat.h> -
libpolys/misc/Makefile.am
r6f8d6f r84fc1f 17 17 libmisc_g_la_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H 18 18 19 SOURCES = bigintmat.ccintvec.cc int64vec.cc options.c19 SOURCES = intvec.cc int64vec.cc options.c 20 20 libmisc_la_SOURCES = $(SOURCES) 21 21 libmisc_g_la_SOURCES = $(SOURCES) … … 23 23 24 24 libmisc_includedir = $(includedir)/singular/misc 25 libmisc_include_HEADERS = mylimits.h options.h bigintmat.hintvec.h int64vec.h25 libmisc_include_HEADERS = mylimits.h options.h intvec.h int64vec.h 26 26 nodist_libmisc_include_HEADERS = auxiliary.h 27 27
Note: See TracChangeset
for help on using the changeset viewer.