Changeset 0b0d1e in git
- Timestamp:
- Aug 5, 2016, 4:19:09 PM (7 years ago)
- Branches:
- (u'spielwiese', 'f6c3dc58b0df4bd712574325fe76d0626174ad97')
- Children:
- 0b17bcf95a542a519e636c589d5b3362973ad244
- Parents:
- 9bb030cfb7c6f2a87d89031305421baf5e7a6dbc200d16cb7e4d59545343edd524e9514efb970d74
- git-author:
- Hans Schoenemann <hannes@mathematik.uni-kl.de>2016-08-05 16:19:09+02:00
- git-committer:
- GitHub <noreply@github.com>2016-08-05 16:19:09+02:00
- Files:
-
- 66 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
.gitignore
r200d16 r0b0d1e 44 44 /libpolys/libpolysconfig.h 45 45 /libpolys/libpolysconfig.h.in 46 /libpolys/misc/auxiliary.h47 46 /libpolys/polys/m4/ 48 47 /libpolys/polys/templates/p_Procs_Generate -
Singular/blackbox.cc
r200d16 r0b0d1e 1 2 3 4 1 #include <kernel/mod2.h> 5 #include <misc/auxiliary.h>6 2 7 3 #include "tok.h" -
Singular/blackbox.h
r200d16 r0b0d1e 2 2 #define BLACKBOX_H 3 3 4 #include < misc/auxiliary.h>4 #include <kernel/mod2.h> 5 5 #include <omalloc/omalloc.h> 6 6 -
Singular/cntrlc.h
r200d16 r0b0d1e 8 8 */ 9 9 #include <setjmp.h> 10 #include < misc/auxiliary.h>10 #include <kernel/mod2.h> 11 11 #include <kernel/structs.h> 12 12 -
Singular/dyn_modules/polymake/polymake_documentation.cc
r9bb030 r0b0d1e 24 24 25 25 const char *polymake_banner = 26 "Welcome to polymake \nCopyright (c) 1997-2012\nEwgenij Gawrilow, Michael Joswig (TU Darmstadt)\nhttp://www.polymake.org\n";26 "Welcome to polymake version 3.0\nCopyright (c) 1997-2015\nEwgenij Gawrilow, Michael Joswig (TU Darmstadt)\nhttp://www.polymake.org\n"; 27 27 28 28 PrintS(polymake_banner); -
Singular/dyn_modules/polymake/polymake_wrapper.cc
r9bb030 r0b0d1e 972 972 { 973 973 polymake::perl::Object* p = ZPolytope2PmPolytope(zp); 974 #if (POLYMAKEVERSION >=300) 975 polymake::Matrix<polymake::Integer> lp = p->CallPolymakeMethod("LATTICE_POINTS"); 976 #elif (POLYMAKEVERSION >=212) 974 977 polymake::Matrix<polymake::Integer> lp = p->give("LATTICE_POINTS"); 978 #else 979 #error polymake version too old 980 #endif 975 981 delete p; 976 982 iv = PmMatrixInteger2Intvec(&lp,ok); … … 1176 1182 { 1177 1183 polymake::perl::Object* p = ZPolytope2PmPolytope(zp); 1184 #if (POLYMAKEVERSION >=300) 1185 polymake::Matrix<polymake::Integer> lp = p->CallPolymakeMethod("HILBERT_BASIS"); 1186 #elif (POLYMAKEVERSION >=212) 1178 1187 polymake::Matrix<polymake::Integer> lp = p->give("HILBERT_BASIS"); 1188 #else 1189 #error polymake version too old 1190 #endif 1179 1191 delete p; 1180 1192 iv = PmMatrixInteger2Intvec(&lp,ok); -
Singular/dyn_modules/singmathic/singmathic.cc
r200d16 r0b0d1e 3 3 #ifdef HAVE_MATHICGB 4 4 5 #include < misc/auxiliary.h>5 #include <kernel/mod2.h> 6 6 7 7 #include <misc/options.h> -
Singular/extra.cc
r200d16 r0b0d1e 12 12 13 13 #include <kernel/mod2.h> 14 #include <misc/auxiliary.h>15 14 #include <misc/sirandom.h> 16 15 #include <resources/omFindExec.h> -
Singular/fglm.h
r200d16 r0b0d1e 2 2 #define SINGULAR_FGLM_H 3 3 4 #include < misc/auxiliary.h>4 #include <kernel/mod2.h> 5 5 6 6 #include <kernel/ideals.h> -
Singular/gms.h
r200d16 r0b0d1e 9 9 #define GMS_H 10 10 11 #include < misc/auxiliary.h>11 #include <kernel/mod2.h> 12 12 #include <polys/matpol.h> 13 13 -
Singular/grammar.cc
r200d16 r0b0d1e 78 78 79 79 #include <kernel/mod2.h> 80 #include <misc/auxiliary.h>81 80 82 81 #include <misc/mylimits.h> -
Singular/grammar.y
r200d16 r0b0d1e 14 14 15 15 #include <kernel/mod2.h> 16 #include <misc/auxiliary.h>17 16 18 17 #include <misc/mylimits.h> -
Singular/ipassign.cc
r200d16 r0b0d1e 14 14 #include <kernel/mod2.h> 15 15 16 #include <misc/auxiliary.h>17 16 #include <omalloc/omalloc.h> 18 17 -
Singular/ipshell.cc
r200d16 r0b0d1e 12 12 #include <factory/factory.h> 13 13 14 #include <misc/auxiliary.h>15 14 #include <misc/options.h> 16 15 #include <misc/mylimits.h> -
Singular/libsingular.h
r200d16 r0b0d1e 4 4 #include <math.h> // Why this? 5 5 6 #include <misc/auxiliary.h> 6 #include <singularconfig.h> 7 #include <kernel/mod2.h> 7 8 #include <kernel/structs.h> 8 9 #include <kernel/polys.h> -
Singular/links/silink.h
r200d16 r0b0d1e 8 8 */ 9 9 10 #include < misc/auxiliary.h>10 #include <singularconfig.h> 11 11 #include <kernel/structs.h> 12 12 -
Singular/maps_ip.h
r200d16 r0b0d1e 8 8 */ 9 9 10 #include < misc/auxiliary.h>10 #include <kernel/mod2.h> 11 11 #include <polys/matpol.h> 12 12 -
Singular/misc_ip.cc
r200d16 r0b0d1e 15 15 16 16 #include <kernel/mod2.h> 17 #include <misc/auxiliary.h>18 17 #include <misc/sirandom.h> 19 18 -
Singular/misc_ip.h
r200d16 r0b0d1e 24 24 #define MISC_H 25 25 26 #include < misc/auxiliary.h>26 #include <kernel/mod2.h> 27 27 28 28 #include <coeffs/si_gmp.h> -
Singular/number2.h
r200d16 r0b0d1e 2 2 #define NUMBER2_H 3 3 4 #include < misc/auxiliary.h>4 #include <kernel/mod2.h> 5 5 6 6 #ifdef SINGULAR_4_1 -
Singular/test.cc
r200d16 r0b0d1e 6 6 7 7 #include <omalloc/omalloc.h> 8 #include <misc/auxiliary.h>9 8 10 9 #include <factory/factory.h> // :( -
Singular/tesths.cc
r200d16 r0b0d1e 13 13 #include <omalloc/omalloc.h> 14 14 15 #include <misc/auxiliary.h>16 15 #include <misc/options.h> 17 16 -
Tst/Manual/semigroup.res.gz.uu
r200d16 r0b0d1e 1 1 begin 640 semigroup.res.gz 2 M'XL(" *!?<DX``W-E;6EG<F]U<"YR97,`;5+!4H,P$+WS%3L=#V`#;0(%E2D'3 M ]=(9QX/UYJB3UK1F)D"'!`U_;X"2,K6G97F;MV_?[OKU<?4,`#B#I]4]3)144 M@ >";20KFZY,77+E>ZK01L@PDR_F^*NM#4+#?0"JJG/61@!P)J&#Z4(JF9[%P5 MF $'%BSU4RSER-6H\).0)C3*8S6!55>RKWO*-8/!`);/P(CAU=EU-_";T/H@?6 M Z47CZ\3H>\/O=XXI'&)+V>7$YG&7AS;'B3.@+#^H!@27RAD*R-PVCWMM!:AO7 M !GPD<6LD(N#%#ZTX+91T/:!"EN:_V-:"*B:!0FZLRZDP^A64.TN:!"WIGA6L8 M HJJLI,$Z_I/!MO0F&/?X/[V9V0R2.A&*D1EJ>';;R7ZY:"B>!]#N"'9+MR&^9 M #KUK$Z=]C'RBPZ;GG^JX-WAXB$<WX.XN.T]0A,B9^Z$1%UK#1\5&,T'Q^:X010 F #E%ROC""2`N,=H0(1A&VXLP)MD?;GF4M7>RE5\X?`.7'PM\"````2 M'XL(""MJI%<``W-E;6EG<F]U<"YR97,`;5)-4X,P$+WS*W8Z'L`&VB045*8< 3 MU$MG'`_6FZ-.6M.:F0`=$A3^O0%*RM2>-ON1MV_?[OKU<?4,`#B%I]4]3+32 4 M@12;20+F]2ERH5TO<5H+:0J*9V)?%M4AR/EOH#33SOH(0(X`3/+Z4,BF1[%I 5 MFD(I\CV4RSER:]1X2*I3-DQA-H-56?*O:BLVDL,#4]RF%\&IL^O6Q&^H]T'\ 6 ML%XT?AT;?F_X_<XQA8-M(3N?6#_J?&I]'#M#EF<'W8`42CM#`9G;YE'/+0?] 7 MS4&,*&X-100B_V&E8+E6K@=,JL+$Y;:23',%##(C7<:DX:^AV%G0.&A!]SSG 8 M)=-%J4RNPS\);$MO@G&/_].;F<T@B1.B")FAAF^W'>V7BX+B>0#MCF"W=!OB 9 MU]2[-G;:V]`G-6UZ_&D=]0(/'_'H!MS=9>4)(NA<?8HHBJS@H^*H94W.JC%! 10 FF")ROK((Q28^VA$B&(78DC,GV!YM>Y:5<K&77#E_Y;YTAM\"```` 11 11 ` 12 12 end -
Tst/Manual/semigroup.stat
r200d16 r0b0d1e 1 1 >> tst_memory_0 :: 1 316104113:3132- exportiert :3-1-3:ix86-Linux:mamawutz:3643602 1 >> tst_memory_1 :: 1 316104113:3132- exportiert :3-1-3:ix86-Linux:mamawutz:9420803 1 >> tst_memory_2 :: 1 316104113:3132- exportiert :3-1-3:ix86-Linux:mamawutz:10731524 1 >> tst_timer_1 :: 1 316104113:3132- exportiert :3-1-3:ix86-Linux:mamawutz:261 1 >> tst_memory_0 :: 1470392875:4031, 64 bit:4.0.3:x86_64-Linux:nepomuck:337848 2 1 >> tst_memory_1 :: 1470392875:4031, 64 bit:4.0.3:x86_64-Linux:nepomuck:2502656 3 1 >> tst_memory_2 :: 1470392875:4031, 64 bit:4.0.3:x86_64-Linux:nepomuck:2650112 4 1 >> tst_timer_1 :: 1470392875:4031, 64 bit:4.0.3:x86_64-Linux:nepomuck:7 -
kernel/GBEngine/kpolys.cc
r200d16 r0b0d1e 5 5 6 6 #include <omalloc/omalloc.h> 7 #include <misc/auxiliary.h>8 7 9 8 #include <kernel/polys.h> -
kernel/GBEngine/nc.cc
r200d16 r0b0d1e 5 5 6 6 #include <kernel/mod2.h> 7 #include <misc/auxiliary.h>8 7 9 8 #include <misc/options.h> -
kernel/GBEngine/nc.h
r200d16 r0b0d1e 1 1 #ifndef KERNEL_NC_H 2 2 #define KERNEL_NC_H 3 4 #include <kernel/mod2.h> 3 5 4 6 #ifdef HAVE_PLURAL … … 15 17 16 18 #endif // #ifdef PLURAL_INTERNAL_DECLARATIONS 17 18 19 #include <misc/auxiliary.h>20 19 21 20 #include <polys/nc/nc.h> -
kernel/GBEngine/sca.cc
r200d16 r0b0d1e 5 5 6 6 #include <kernel/mod2.h> 7 #include <misc/auxiliary.h>8 7 9 8 #include <misc/options.h> -
kernel/GBEngine/test.cc
r200d16 r0b0d1e 8 8 #include <factory/factory.h> // :( 9 9 10 #include <misc/auxiliary.h>11 10 #include <misc/intvec.h> 12 11 #include <misc/int64vec.h> -
kernel/combinatorics/hilb.cc
r200d16 r0b0d1e 9 9 10 10 #include <omalloc/omalloc.h> 11 #include <misc/auxiliary.h>12 11 #include <misc/mylimits.h> 13 12 #include <misc/intvec.h> -
kernel/combinatorics/test.cc
r200d16 r0b0d1e 9 9 #include <factory/factory.h> // :( 10 10 11 #include <misc/auxiliary.h>12 11 #include <misc/intvec.h> 13 12 #include <misc/int64vec.h> -
kernel/fglm/test.cc
r200d16 r0b0d1e 9 9 #include <factory/factory.h> // :( 10 10 11 #include <misc/auxiliary.h>12 11 #include <misc/intvec.h> 13 12 #include <misc/int64vec.h> -
kernel/groebner_walk/test.cc
r200d16 r0b0d1e 9 9 #include <factory/factory.h> // :( 10 10 11 #include <misc/auxiliary.h>12 11 #include <misc/intvec.h> 13 12 #include <misc/int64vec.h> -
kernel/linear_algebra/test.cc
r200d16 r0b0d1e 9 9 #include <factory/factory.h> // :( 10 10 11 #include <misc/auxiliary.h>12 11 #include <misc/intvec.h> 13 12 #include <misc/int64vec.h> -
kernel/maps/test.cc
r200d16 r0b0d1e 9 9 #include <factory/factory.h> // :( 10 10 11 #include <misc/auxiliary.h>12 11 #include <misc/intvec.h> 13 12 #include <misc/int64vec.h> -
kernel/mod2.h
r200d16 r0b0d1e 4 4 * 5 5 * mod2.h: Main configuration file for Singular 6 * DO NOT EDIT!7 6 * 8 7 *******************************************************************/ … … 12 11 /* please include singularconfig.h exclusively via <kernel/mod2.h> and before any other header */ 13 12 # include <singularconfig.h> 14 15 13 # include <misc/auxiliary.h> 16 14 -
kernel/numeric/mpr_base.cc
r200d16 r0b0d1e 14 14 #include <kernel/mod2.h> 15 15 16 #include <misc/auxiliary.h>17 16 #include <omalloc/omalloc.h> 18 17 -
kernel/numeric/mpr_inout.cc
r200d16 r0b0d1e 10 10 11 11 #include <kernel/mod2.h> 12 #include <misc/auxiliary.h>13 12 14 13 //#ifdef HAVE_MPR -
kernel/numeric/mpr_numeric.cc
r200d16 r0b0d1e 11 11 #include <kernel/mod2.h> 12 12 13 #include <misc/auxiliary.h>14 13 #include <omalloc/omalloc.h> 15 14 -
kernel/numeric/test.cc
r200d16 r0b0d1e 9 9 #include <factory/factory.h> // :( 10 10 11 #include <misc/auxiliary.h>12 11 #include <misc/intvec.h> 13 12 #include <misc/int64vec.h> -
kernel/oswrapper/test.cc
r200d16 r0b0d1e 9 9 #include <factory/factory.h> // :( 10 10 11 #include <misc/auxiliary.h>12 11 #include <misc/intvec.h> 13 12 #include <misc/int64vec.h> -
kernel/polys.cc
r200d16 r0b0d1e 1 2 1 #include <kernel/mod2.h> 3 2 4 3 #include <omalloc/omalloc.h> 5 #include <misc/auxiliary.h>6 4 #include <misc/options.h> 7 5 -
kernel/preimage.cc
r200d16 r0b0d1e 1 2 1 #include <kernel/mod2.h> 3 2 4 3 #include <omalloc/omalloc.h> 5 #include <misc/auxiliary.h>6 4 #include <misc/options.h> 7 5 #include <misc/intvec.h> -
kernel/spectrum/test.cc
r200d16 r0b0d1e 9 9 #include <factory/factory.h> // :( 10 10 11 #include <misc/auxiliary.h>12 11 #include <misc/intvec.h> 13 12 #include <misc/int64vec.h> -
kernel/structs.h
r200d16 r0b0d1e 8 8 */ 9 9 10 #include <kernel/mod2.h> 10 11 /* for omBin */ 11 12 #include <omalloc/omalloc.h> … … 20 21 /* C++-part */ 21 22 #ifdef __cplusplus 22 #include <misc/auxiliary.h>23 23 #include <kernel/polys.h> 24 24 #include <polys/coeffrings.h> -
kernel/test.cc
r200d16 r0b0d1e 2 2 3 3 #include <omalloc/omalloc.h> 4 #include <misc/auxiliary.h>5 4 #include <factory/factory.h> // :( 6 5 -
libpolys/coeffs/AEp.h
r200d16 r0b0d1e 2 2 #define AEP_H 3 3 4 #include < misc/auxiliary.h>4 #include <singularconfig.h> 5 5 #include "si_gmp.h" 6 6 -
libpolys/coeffs/coeffs.h
r200d16 r0b0d1e 10 10 #define COEFFS_H 11 11 12 # include <misc/auxiliary.h>12 # include <misc/auxiliary.h> 13 13 #include <omalloc/omalloc.h> 14 14 -
libpolys/coeffs/flintcf_Q.cc
r200d16 r0b0d1e 7 7 #include <ctype.h> /* isdigit*/ 8 8 9 #ifdef HAVE_CONFIG_H10 #include "libpolysconfig.h"11 #endif /* HAVE_CONFIG_H */12 9 #include <misc/auxiliary.h> 13 10 -
libpolys/coeffs/flintcf_Zn.cc
r200d16 r0b0d1e 7 7 #include <ctype.h> /* isdigit*/ 8 8 9 #ifdef HAVE_CONFIG_H10 #include "libpolysconfig.h"11 #endif /* HAVE_CONFIG_H */12 9 #include <misc/auxiliary.h> 13 10 -
libpolys/coeffs/flintcf_Zn.h
r200d16 r0b0d1e 10 10 #define FLINTCF_ZN_H 11 11 12 #include <singularconfig.h> 12 13 #include <misc/auxiliary.h> 14 13 15 #ifdef SINGULAR_4_1 14 16 #ifdef HAVE_FLINT -
libpolys/coeffs/gnumpc.h
r200d16 r0b0d1e 7 7 * ABSTRACT: computations with GMP floating-point numbers 8 8 */ 9 #include <singularconfig.h> 9 10 #include <misc/auxiliary.h> 10 11 -
libpolys/coeffs/gnumpfl.h
r200d16 r0b0d1e 8 8 */ 9 9 10 #include <singularconfig.h> 10 11 #include <misc/auxiliary.h> 12 11 13 12 14 struct n_Procs_s; typedef struct n_Procs_s *coeffs; -
libpolys/coeffs/rintegers.h
r200d16 r0b0d1e 8 8 */ 9 9 #include <misc/auxiliary.h> 10 #include <coeffs/coeffs.h>11 10 12 11 #ifdef HAVE_RINGS -
libpolys/coeffs/rmodulon.h
r200d16 r0b0d1e 8 8 */ 9 9 #include <misc/auxiliary.h> 10 #include <coeffs/coeffs.h> 10 11 11 12 struct n_Procs_s; typedef struct n_Procs_s *coeffs; -
libpolys/configure.ac
r200d16 r0b0d1e 147 147 AC_CONFIG_FILES([polys/Makefile]) 148 148 AC_CONFIG_FILES([tests/Makefile]) 149 AC_CONFIG_FILES([libpolys-config libpolys.pc misc/auxiliary.h])149 AC_CONFIG_FILES([libpolys-config libpolys.pc]) 150 150 AC_OUTPUT -
libpolys/misc/Makefile.am
r200d16 r0b0d1e 13 13 libmisc_la_includedir = $(includedir)/singular/misc 14 14 libmisc_la_include_HEADERS = mylimits.h options.h intvec.h int64vec.h \ 15 sirandom.h prime.h 15 sirandom.h prime.h auxiliary.h 16 16 17 nodist_libmisc_la_include_HEADERS = auxiliary.h18 nodist_libmisc_la_SOURCES = auxiliary.h19 -
libpolys/misc/auxiliary.h
r200d16 r0b0d1e 19 19 /* please include libpolysconfig.h exclusively via <misc/auxiliary.h> and before any other header */ 20 20 #include "libpolysconfig.h" 21 22 // ----------------- which parts/extensions of Singular to build23 #ifndef HAVE_RINGS24 #undef HAVE_RINGS25 #endif26 27 #ifndef HAVE_PLURAL28 #undef HAVE_PLURAL29 #endif30 31 #ifndef HAVE_DL32 #undef HAVE_DL33 #endif34 35 #ifndef HAVE_NTL36 #undef HAVE_NTL37 #endif38 39 /* letterplace gb:*/40 #ifndef HAVE_SHIFTBBA41 #undef HAVE_SHIFTBBA42 #endif43 44 #ifndef HAVE_POLYEXTENSIONS45 #undef HAVE_POLYEXTENSIONS46 #endif47 48 #ifndef DISABLE_GMP_CPP49 #undef DISABLE_GMP_CPP50 #endif51 52 #ifndef SINGULAR53 #undef SINGULAR54 #endif55 56 #ifndef NOSTREAMIO57 #undef NOSTREAMIO58 #endif59 21 60 22 /* the following cunstruct is to make it painless to add -DHAVE_NUMSTATS to CPPFLAGS for configure */ … … 63 25 #undef HAVE_NUMSTATS 64 26 #endif /* HAVE_NUMSTATS */ 65 // ---------------- end of parts/extensions66 27 67 28 // ---------------- Singular standard types etc. … … 174 135 175 136 // ---------------- defines which depend on the settings above 176 177 #ifndef HAVE_MULT_MOD178 #undef HAVE_MULT_MOD179 #endif180 181 #ifndef HAVE_DIV_MOD182 #undef HAVE_DIV_MOD183 #endif184 185 #ifndef HAVE_GENERIC_ADD186 #undef HAVE_GENERIC_ADD187 #endif188 137 189 138 /******************************************************************* -
libpolys/misc/int64vec.h
r200d16 r0b0d1e 8 8 */ 9 9 #include <string.h> 10 #include <misc/auxiliary.h> 10 11 #include <omalloc/omallocClass.h> 11 #include <misc/auxiliary.h>12 12 #include <misc/intvec.h> 13 13 -
libpolys/polys/kbuckets.cc
r200d16 r0b0d1e 2 2 * Computer Algebra System SINGULAR * 3 3 ****************************************/ 4 //#include <kernel/mod2.h>5 6 7 8 4 9 5 #include <omalloc/omalloc.h> -
libpolys/polys/sbuckets.cc
r200d16 r0b0d1e 9 9 * Created: 9/00 10 10 *******************************************************************/ 11 //#include <kernel/mod2.h>12 13 11 #include <omalloc/omalloc.h> 14 15 16 17 12 18 13 #include <misc/auxiliary.h> -
libpolys/polys/templates/p_Procs_Set.h
r200d16 r0b0d1e 15 15 16 16 #include <reporter/reporter.h> 17 #include < libpolys/libpolysconfig.h>17 #include <misc/auxiliary.h> 18 18 19 19 // extract p_Procs properties from a ring -
libpolys/polys/weight0.c
r200d16 r0b0d1e 6 6 * ABSTRACT: 7 7 */ 8 9 10 11 12 8 13 9 #include <misc/auxiliary.h> -
libpolys/reporter/s_buff.cc
r200d16 r0b0d1e 9 9 #include <signal.h> 10 10 11 //#include <kernel/mod2.h>12 11 #include <gmp.h> 13 12 -
libpolys/tests/coeffs_test.h
r200d16 r0b0d1e 1 2 3 4 1 #include <misc/auxiliary.h> 5 2 #include <omalloc/omalloc.h> -
libpolys/tests/common.h
r200d16 r0b0d1e 8 8 #include <cxxtest/TestSuite.h> 9 9 #include <cxxtest/GlobalFixture.h> 10 11 12 13 14 10 15 11 #include <misc/auxiliary.h> -
libpolys/tests/simple_test.h
r200d16 r0b0d1e 1 2 3 4 1 #include <misc/auxiliary.h> 5 2
Note: See TracChangeset
for help on using the changeset viewer.