Changeset b5f5444 in git
- Timestamp:
- Aug 3, 2011, 3:47:55 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a800fe4b3e9d37a38c5a10cc0ae9dfa0c15a4ee6')
- Children:
- 79ea4809aa81094eb116bd40570e1ef79259ab31
- Parents:
- e8c8d577a2c68f346822b68f71832651960d1ba0
- git-author:
- Burcin Erocal <burcin@erocal.org>2011-08-03 15:47:55+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 13:14:16+01:00
- Location:
- Singular
- Files:
-
- 1 added
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
Singular/blackbox.h
re8c8d5 rb5f5444 1 1 #ifndef BLACKBOX_H 2 2 #define BLACKBOX_H 3 #include <omalloc .h>3 #include <omalloc/omalloc.h> 4 4 #include <kernel/structs.h> 5 5 #include <kernel/febase.h> -
Singular/emacs.cc
re8c8d5 rb5f5444 87 87 } 88 88 89 #include < Singular/../kernel/feResource.cc>89 #include <resources/feResource.cc> 90 90 #include <Singular/feOpt.cc> 91 91 -
Singular/extra.cc
re8c8d5 rb5f5444 55 55 #include <Singular/distrib.h> 56 56 #include <polys/prCopy.h> 57 #include < kernel/mpr_complex.h>58 #include < kernel/ffields.h>57 #include <coeffs/mpr_complex.h> 58 #include <coeffs/ffields.h> 59 59 #include <Singular/minpoly.h> 60 60 … … 94 94 #endif 95 95 96 #include < kernel/sca.h>96 #include <polys/nc//sca.h> 97 97 #ifdef HAVE_PLURAL 98 98 #include <polys/monomials/ring.h> … … 123 123 #ifdef HAVE_FACTORY 124 124 #define SI_DONT_HAVE_GLOBAL_VARS 125 #include < kernel/clapconv.h>125 #include <polys/clapconv.h> 126 126 #include <kernel/kstdfac.h> 127 127 #include <libfac/factor.h> -
Singular/fehelp.cc
re8c8d5 rb5f5444 23 23 #include <Singular/libparse.h> 24 24 #include <Singular/feOpt.h> 25 #include < kernel/dError.h>25 #include <reporter/reporter.h> 26 26 27 27 /***************************************************************** -
Singular/iparith.cc
re8c8d5 rb5f5444 24 24 #include <kernel/febase.h> 25 25 #include <Singular/sdb.h> 26 #include < kernel/longalg.h>27 #include < kernel/longtrans.h>26 #include <polys/ext_fields/longalg.h> 27 #include <polys/ext_fields/longtrans.h> 28 28 #include <kernel/ideals.h> 29 29 #include <polys/prCopy.h> … … 36 36 #include <kernel/modulop.h> 37 37 #ifdef HAVE_RINGS 38 #include < kernel/rmodulon.h>39 #include < kernel/rmodulo2m.h>40 #include < kernel/rintegers.h>38 #include <coeffs/rmodulon.h> 39 #include <coeffs/rmodulo2m.h> 40 #include <coeffs/rintegers.h> 41 41 #endif 42 42 #include <coeffs/numbers.h> … … 50 50 #include <Singular/attrib.h> 51 51 #include <Singular/silink.h> 52 #include < kernel/sparsmat.h>52 #include <polys/sparsmat.h> 53 53 #include <kernel/units.h> 54 54 #include <Singular/janet.h> … … 72 72 #include <Singular/newstruct.h> 73 73 #include <Singular/ipshell.h> 74 #include <kernel/mpr_inout.h>74 //#include <kernel/mpr_inout.h> 75 75 76 76 #include <kernel/timer.h> … … 79 79 80 80 #ifdef HAVE_PLURAL 81 #include <kernel/ gring.h>81 #include <kernel/ratgring.h> 82 82 #include <kernel/sca.h> 83 83 #define ALLOW_PLURAL 1 -
Singular/ipshell.cc
re8c8d5 rb5f5444 41 41 #include <kernel/splist.h> 42 42 #include <kernel/spectrum.h> 43 #include < kernel/gnumpfl.h>44 #include <kernel/mpr_base.h>43 #include <coeffs/gnumpfl.h> 44 //#include <kernel/mpr_base.h> 45 45 #include <kernel/ffields.h> 46 46 #include <polys/clapsing.h> -
Singular/libsingular.h
re8c8d5 rb5f5444 11 11 #include <singular/febase.h> 12 12 #include <singular/ring.h> 13 #include <omalloc .h>13 #include <omalloc/omalloc.h> 14 14 #include <singular/clapsing.h> 15 15 #include <singular/maps.h> -
Singular/makefile
re8c8d5 rb5f5444 353 353 # test: test.o 354 354 355 test.o: test.cc mod2.h 355 test.o: test.cc mod2.h feOpt.inc 356 356 $(CXXG) ${CXXFLAGSG} ${CXXTEMPLFLAGS} ${CPPFLAGS} ${DEFSG} -c $< -o $@ 357 358 feOpt.inc: feOpt.cc mod2.h 359 $(CXX) $(CXXFLAGS) -DGENERATE_OPTION_INDEX ${CPPFLAGS} feOpt.cc -o feOpt 360 ./feOpt 361 /bin/rm -f feOpt feOpt.exe 362 363 feOptES.inc: feOpt.cc mod2.h 364 $(CXX) $(CXXFLAGS) -DGENERATE_OPTION_INDEX -DESINGULAR -I../kernel feOpt.cc -o feOptES 365 ./feOptES 366 rm -f feOptES feOptES.exe 367 368 feOptTS.inc: feOpt.cc mod2.h 369 $(CXX) $(CXXFLAGS) -DGENERATE_OPTION_INDEX -DTSINGULAR -I../kernel feOpt.cc -o feOptTS 370 ./feOptTS 371 rm -f feOptTS feOptTS.exe 372 373 iparith.inc: gentable.cc grammar.h tok.h table.h mod2.h 374 ${CXX} ${CXXFLAGS} ${CPPFLAGS} ${CXXTEMPLFLAGS} ${DEFS} gentable.cc \ 375 -o gentable1 376 ./gentable1 377 /bin/rm -f gentable1 gentable1.exe -
Singular/misc_ip.cc
re8c8d5 rb5f5444 352 352 #include <misc/intvec.h> 353 353 #include <polys/monomials/ring.h> 354 #include < kernel/p_Procs.h>354 #include <polys/templates/p_Procs.h> 355 355 /* Needed for debug Version of p_SetRingOfLeftv, Oliver */ 356 356 #ifdef PDEBUG -
Singular/silink.h
re8c8d5 rb5f5444 11 11 #include <kernel/structs.h> 12 12 #include <Singular/sing_dbm.h> 13 #include <Singular/lists.h> 14 #include <Singular/attrib.h> 13 15 14 16 typedef struct sip_link ip_link;
Note: See TracChangeset
for help on using the changeset viewer.