Changeset 4e8926 in git
- Timestamp:
- Mar 26, 2014, 10:49:18 AM (10 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 57fa2c40e594f6852ad399834f69212c271e4f5a
- Parents:
- 49638b20af32a6a5e879809c94cef93658eac169
- git-author:
- Adi Popescu <adi_popescum@yahoo.de>2014-03-26 10:49:18+01:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2014-03-28 16:37:27+01:00
- Files:
-
- 1 added
- 2 edited
- 27 moved
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
r49638b r4e8926 208 208 AC_CONFIG_FILES([kernel/linear_algebra/Makefile]) 209 209 AC_CONFIG_FILES([kernel/maps/Makefile]) 210 AC_CONFIG_FILES([kernel/GBEngine/Makefile]) 210 211 211 212 AC_CONFIG_SUBDIRS([gfanlib]) -
kernel/GBEngine/gr_kstd2.cc
r49638b r4e8926 10 10 #include "singularconfig.h" 11 11 #endif /* HAVE_CONFIG_H */ 12 #include "mod2.h"12 #include <kernel/mod2.h> 13 13 14 14 #ifdef HAVE_PLURAL -
kernel/GBEngine/janet.cc
r49638b r4e8926 20 20 // #include "subexpr.h" 21 21 22 #include "janet.h"22 #include <kernel/janet.h> 23 23 24 24 -
kernel/GBEngine/kpolys.cc
r49638b r4e8926 2 2 #include "singularconfig.h" 3 3 #endif /* HAVE_CONFIG_H */ 4 #include "mod2.h"4 #include <kernel/mod2.h> 5 5 6 6 #include <omalloc/omalloc.h> 7 7 #include <misc/auxiliary.h> 8 8 9 #include "polys.h"9 #include <kernel/polys.h> 10 10 11 11 -
kernel/GBEngine/kstd1.cc
r49638b r4e8926 25 25 #include "singularconfig.h" 26 26 #endif /* HAVE_CONFIG_H */ 27 #include "mod2.h"27 #include <kernel/mod2.h> 28 28 29 29 #include <omalloc/omalloc.h> -
kernel/GBEngine/kutil.cc
r49638b r4e8926 14 14 #include "singularconfig.h" 15 15 #endif /* HAVE_CONFIG_H */ 16 #include "mod2.h"16 #include <kernel/mod2.h> 17 17 18 18 #ifndef SING_NDEBUG -
kernel/GBEngine/nc.cc
r49638b r4e8926 4 4 #include "singularconfig.h" 5 5 #endif /* HAVE_CONFIG_H */ 6 #include "mod2.h"6 #include <kernel/mod2.h> 7 7 #include <misc/auxiliary.h> 8 8 -
kernel/GBEngine/sca.cc
r49638b r4e8926 4 4 #include "singularconfig.h" 5 5 #endif /* HAVE_CONFIG_H */ 6 #include "mod2.h"6 #include <kernel/mod2.h> 7 7 #include <misc/auxiliary.h> 8 8 … … 15 15 #include <polys/nc/gb_hack.h> 16 16 17 #include "polys.h"18 #include "ideals.h"19 #include "kstd1.h"20 #include "kutil.h"21 22 #include "nc.h"17 #include <kernel/polys.h> 18 #include <kernel/ideals.h> 19 #include <kernel/kstd1.h> 20 #include <kernel/kutil.h> 21 22 #include <kernel/nc.h> 23 23 24 24 /// nc_gr_initBba is needed for sca_gr_bba and gr_bba. -
kernel/GBEngine/syz2.cc
r49638b r4e8926 10 10 #endif /* HAVE_CONFIG_H */ 11 11 12 #include "mod2.h"12 #include <kernel/mod2.h> 13 13 14 14 #include <omalloc/omalloc.h> -
kernel/Makefile.am
r49638b r4e8926 2 2 # TODO: use ${top_srcdir} instead of .. in the above? 3 3 4 SUBDIRS=sample numeric fglm groebner_walk combinatorics spectrum linear_algebra maps 4 SUBDIRS=sample numeric fglm groebner_walk combinatorics spectrum linear_algebra maps GBEngine 5 5 # kernelsample 6 6 … … 14 14 SOURCES = polys.cc febase.cc feread.cc \ 15 15 ideals.cc \ 16 khstd.cc kstdfac.cc \17 kstd1.cc kstd2.cc kutil.cc \18 nc.cc sca.cc gr_kstd2.cc \19 16 misc.cc \ 20 kspoly.cc kpolys.cc \21 syz.cc syz0.cc syz1.cc syz2.cc syz3.cc \22 17 timer.cc \ 23 units.cc \24 18 fast_mult.cc digitech.cc \ 25 tgb.cc tgbgauss.cc ringgb.cc f5data.cc f5lists.cc f5gb.cc f5c.cc \26 ratgring.cc shiftgb.cc \27 19 preimage.cc \ 28 20 mod2.h \ 29 janet.ccinterpolation.cc minpoly.cc21 interpolation.cc minpoly.cc 30 22 31 23 libkernel_la_SOURCES = $(SOURCES) … … 58 50 ${builddir}/linear_algebra/liblinear_algebra.la \ 59 51 ${builddir}/maps/libmaps.la \ 52 ${builddir}/GBEngine/libGBEngine.la \ 60 53 ${USEPPROCSDYNAMICLDFLAGS} ${USEPPROCSDYNAMICLD} \ 61 54 ${abs_top_builddir}/libpolys/polys/libpolys.la
Note: See TracChangeset
for help on using the changeset viewer.