Changeset 5ff1d3 in git
- Timestamp:
- Aug 10, 2011, 7:45:54 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
- Children:
- a8ee9fd4127d41a25614239acf6eebbd463a5c9c
- Parents:
- 045efb6cbccc650666b59532ac1ad8caeccbae8d
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-08-10 19:45:54+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 13:19:14+01:00
- Location:
- Singular
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/interpolation.cc
r045efb r5ff1d3 10 10 # include <factory/factory.h> 11 11 #endif /* HAVE_FACTORY */ 12 13 #include <misc/intvec.h> 14 15 #include <polys/monomials/ring.h> 16 #include <polys/polys.h> 17 18 #include <coeffs/longrat.h> 19 20 #include <kernel/longrat.h> 12 21 #include <kernel/febase.h> 13 22 #include <kernel/ideals.h> 14 #include <misc/intvec.h> 15 #include <polys/polys.h> 16 #include <Singular/lists.h> 17 #include <coeffs/longrat.h> 18 #include <Singular/ipid.h> 19 #include <polys/monomials/ring.h> 23 24 #include "lists.h" 25 #include "ipid.h" 20 26 21 27 // parameters to debug -
Singular/janet.cc
r045efb r5ff1d3 6 6 #include <kernel/mod2.h> 7 7 #include <omalloc/omalloc.h> 8 9 #include <coeffs/numbers.h> 10 8 11 #include <polys/polys.h> 9 #include <coeffs/numbers.h>10 12 #include <polys/monomials/ring.h> 13 #include <polys/monomials/p_polys.h> 14 #include <polys/kbuckets.h> 15 11 16 #include <kernel/ideals.h> 12 #include <Singular/subexpr.h> 13 #include <polys/kbuckets.h> 14 #include <coeffs/longrat.h> 15 #include <polys/monomials/p_polys.h> 17 #include <kernel/longrat.h> 18 #include <kernel/febase.h> 19 #include <kernel/kutil.h> 20 21 #include "subexpr.h" 22 23 24 #include "janet.h" 16 25 17 26 #if (defined(__CYGWIN__)) 18 27 #include <ctype.h> 19 28 #endif 29 20 30 #include <stdarg.h> 21 31 22 #include <kernel/febase.h>23 #include <Singular/janet.h>24 #include <kernel/kutil.h>25 32 26 33 //------GLOBALS------- -
Singular/misc_ip.h
r045efb r5ff1d3 89 89 ); 90 90 91 92 93 #ifdef PDEBUG 94 #if (OM_TRACK > 2) && defined(OM_TRACK_CUSTOM) 95 // #include <polys/polys.h> 96 /* Needed for debug Version of p_SetRingOfLeftv, Oliver */ 97 void p_SetRingOfLeftv(leftv l, ring r); 98 #endif 99 #endif 100 91 101 #endif 92 102 /* MISC_H */ -
Singular/subexpr.cc
r045efb r5ff1d3 14 14 15 15 #include <kernel/mod2.h> 16 17 #include <omalloc/omalloc.h> 18 16 19 #include <misc/intvec.h> 17 #include <Singular/tok.h>18 20 #include <misc/options.h> 19 #include <Singular/ipid.h> 20 #include <misc/intvec.h> 21 #include <omalloc/omalloc.h> 22 #include <kernel/febase.h> 23 #include <polys/polys.h> 24 #include <kernel/ideals.h> 21 22 23 #include <coeffs/ffields.h> 24 #include <coeffs/numbers.h> 25 25 26 #include <polys/monomials/maps.h> 26 27 #include <polys/matpol.h> 28 #include <polys/monomials/ring.h> 29 #include <polys/polys.h> 30 31 #include <kernel/longrat.h> 32 // #include <coeffs/longrat.h> 33 34 #include <kernel/febase.h> 35 #include <kernel/ideals.h> 27 36 #include <kernel/kstd1.h> 28 37 #include <kernel/timer.h> 29 #include < polys/monomials/ring.h>30 #include <coeffs/ffields.h> 31 #include < coeffs/numbers.h>32 #include < coeffs/longrat.h>38 #include <kernel/syz.h> 39 40 #include <Singular/tok.h> 41 #include <Singular/ipid.h> 33 42 #include <Singular/ipshell.h> 34 43 #include <Singular/lists.h> 35 44 #include <Singular/attrib.h> 36 45 #include <Singular/silink.h> 37 #include <kernel/syz.h>38 46 #include <Singular/attrib.h> 39 47 #include <Singular/subexpr.h> 40 48 #include <Singular/blackbox.h> 49 50 41 51 42 52 omBin sSubexpr_bin = omGetSpecBin(sizeof(_ssubexpr));
Note: See TracChangeset
for help on using the changeset viewer.