Changeset ae4f367 in git
- Timestamp:
- Mar 26, 2014, 9:19:19 AM (10 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 23a78e8b3bf0711bab934f457ec78ae86fbd64d7
- Parents:
- 5abee96cf263f09fb039dd84185a4278a932a140
- git-author:
- Adi Popescu <adi_popescum@yahoo.de>2014-03-26 09:19:19+01:00
- git-committer:
- Adi Popescu <adi_popescum@yahoo.de>2014-03-26 14:44:45+01:00
- Files:
-
- 1 added
- 2 edited
- 5 moved
Legend:
- Unmodified
- Added
- Removed
-
configure.ac
r5abee96 rae4f367 206 206 AC_CONFIG_FILES([kernel/combinatorics/Makefile]) 207 207 AC_CONFIG_FILES([kernel/spectrum/Makefile]) 208 AC_CONFIG_FILES([kernel/linear_algebra/Makefile]) 208 209 209 210 AC_CONFIG_SUBDIRS([gfanlib]) -
kernel/Makefile.am
r5abee96 rae4f367 2 2 # TODO: use ${top_srcdir} instead of .. in the above? 3 3 4 SUBDIRS=sample numeric fglm groebner_walk combinatorics spectrum 4 SUBDIRS=sample numeric fglm groebner_walk combinatorics spectrum linear_algebra 5 5 # kernelsample 6 6 … … 22 22 syz.cc syz0.cc syz1.cc syz2.cc syz3.cc \ 23 23 timer.cc \ 24 eigenval.ccunits.cc \24 units.cc \ 25 25 fast_mult.cc digitech.cc \ 26 26 tgb.cc tgbgauss.cc ringgb.cc f5data.cc f5lists.cc f5gb.cc f5c.cc \ 27 27 ratgring.cc shiftgb.cc \ 28 linearAlgebra.ccpreimage.cc \28 preimage.cc \ 29 29 mod2.h \ 30 janet.cc interpolation.cc minpoly.cc \ 31 Minor.cc MinorInterface.cc MinorProcessor.cc 30 janet.cc interpolation.cc minpoly.cc 32 31 33 34 32 libkernel_la_SOURCES = $(SOURCES) 35 33 … … 61 59 ${builddir}/combinatorics/libcombinatorics.la \ 62 60 ${builddir}/spectrum/libspectrum.la \ 61 ${builddir}/linear_algebra/liblinear_algebra.la \ 63 62 ${USEPPROCSDYNAMICLDFLAGS} ${USEPPROCSDYNAMICLD} \ 64 63 ${abs_top_builddir}/libpolys/polys/libpolys.la -
kernel/linear_algebra/Minor.cc
r5abee96 rae4f367 4 4 #include <kernel/mod2.h> 5 5 6 #include "Minor.h"6 #include <kernel/Minor.h> 7 7 8 8 #include <kernel/structs.h> -
kernel/linear_algebra/MinorInterface.cc
r5abee96 rae4f367 7 7 // #include <cstdio> 8 8 9 #include "MinorInterface.h"10 #include "MinorProcessor.h"9 #include <kernel/MinorInterface.h> 10 #include <kernel/MinorProcessor.h> 11 11 12 12 #include <polys/simpleideals.h> -
kernel/linear_algebra/MinorProcessor.cc
r5abee96 rae4f367 4 4 #include <kernel/mod2.h> 5 5 6 #include "MinorProcessor.h"6 #include <kernel/MinorProcessor.h> 7 7 8 8 #include <polys/kbuckets.h> -
kernel/linear_algebra/linearAlgebra.cc
r5abee96 rae4f367 19 19 #include "singularconfig.h" 20 20 #endif /* HAVE_CONFIG_H */ 21 #include "mod2.h"21 #include <kernel/mod2.h> 22 22 23 23 #include <coeffs/coeffs.h>
Note: See TracChangeset
for help on using the changeset viewer.