Changeset 66b1de7 in git
- Timestamp:
- Mar 25, 2014, 5:05:42 PM (10 years ago)
- Branches:
- (u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
- Children:
- 706551b8742b3f376863feefc0871cbefa877055f2f5ea2fec5d8f364d1161f380e4aa9290565847
- Parents:
- 8e0955e20e5cd5740e86fd4a3c4f51e5d121d22da59c8180c210232bfecb93eed86069167077da88
- Files:
-
- 1 added
- 6 edited
- 6 moved
Legend:
- Unmodified
- Added
- Removed
-
Singular/iparith.cc
r8e0955 r66b1de7 49 49 #include <kernel/GMPrat.h> 50 50 #include <kernel/tgb.h> 51 #include <kernel/ walkProc.h>51 #include <kernel/groebner_walk/walkProc.h> 52 52 #include <kernel/linearAlgebra.h> 53 53 #include <kernel/syz.h> -
Singular/test.cc
r8e0955 r66b1de7 68 68 #include <kernel/fast_maps.h> 69 69 #include <kernel/febase.h> 70 #include <kernel/ walkProc.h>71 #include <kernel/ walkMain.h>72 #include <kernel/ walkSupport.h>70 #include <kernel/groebner_walk/walkProc.h> 71 #include <kernel/groebner_walk/walkMain.h> 72 #include <kernel/groebner_walk/walkSupport.h> 73 73 #include <kernel/khstd.h> 74 74 /// #include <kernel/sparsmat.h> // TODO: install polys/this! … … 163 163 164 164 #include <kernel/units.h> 165 #include <kernel/ walkMain.h>166 #include <kernel/ walkProc.h>167 #include <kernel/ walkSupport.h>165 #include <kernel/groebner_walk/walkMain.h> 166 #include <kernel/groebner_walk/walkProc.h> 167 #include <kernel/groebner_walk/walkSupport.h> 168 168 169 169 -
Singular/walk_ip.cc
r8e0955 r66b1de7 46 46 #include <kernel/hutil.h> 47 47 #include <Singular/ipshell.h> 48 #include <kernel/ walkMain.h>49 #include <kernel/ walkProc.h>50 #include <kernel/ walkSupport.h>48 #include <kernel/groebner_walk/walkMain.h> 49 #include <kernel/groebner_walk/walkProc.h> 50 #include <kernel/groebner_walk/walkSupport.h> 51 51 #include <polys/prCopy.h> 52 52 -
configure.ac
r8e0955 r66b1de7 203 203 AC_CONFIG_FILES([kernel/numeric/Makefile]) 204 204 AC_CONFIG_FILES([kernel/fglm/Makefile]) 205 AC_CONFIG_FILES([kernel/groebner_walk/Makefile]) 205 206 206 207 AC_CONFIG_SUBDIRS([gfanlib]) -
kernel/Makefile.am
r8e0955 r66b1de7 2 2 # TODO: use ${top_srcdir} instead of .. in the above? 3 3 4 SUBDIRS=sample numeric fglm 4 SUBDIRS=sample numeric fglm groebner_walk 5 5 # kernelsample 6 6 … … 24 24 timer.cc \ 25 25 GMPrat.cc multicnt.cc npolygon.cc semic.cc spectrum.cc splist.cc \ 26 walkProc.cc walkMain.cc walkSupport.cc \27 26 eigenval.cc units.cc \ 28 27 fast_mult.cc digitech.cc \ … … 42 41 fast_maps.h \ 43 42 febase.h \ 44 walkProc.h walkMain.h walkSupport.h\45 43 kstdfac.h kmatrix.h\ 46 44 kutil.h \ … … 63 61 ${builddir}/numeric/libnumeric.la \ 64 62 ${builddir}/fglm/libfglm.la \ 63 ${builddir}/groebner_walk/libgroebner_walk.la \ 65 64 ${USEPPROCSDYNAMICLDFLAGS} ${USEPPROCSDYNAMICLD} \ 66 65 ${abs_top_builddir}/libpolys/polys/libpolys.la -
kernel/groebner_walk/walkMain.cc
r8e0955 r66b1de7 17 17 #include <kernel/ideals.h> 18 18 #include <polys/monomials/ring.h> 19 #include <kernel/ walkMain.h>20 #include <kernel/ walkSupport.h>19 #include <kernel/groebner_walk/walkMain.h> 20 #include <kernel/groebner_walk/walkSupport.h> 21 21 #include <polys/prCopy.h> 22 22 #include <kernel/kstd1.h> -
kernel/groebner_walk/walkProc.cc
r8e0955 r66b1de7 17 17 #include <kernel/kstd1.h> 18 18 #include <kernel/fglm/fglm.h> 19 #include <kernel/ walkMain.h>20 #include <kernel/ walkSupport.h>21 #include <kernel/ walkProc.h>19 #include <kernel/groebner_walk/walkMain.h> 20 #include <kernel/groebner_walk/walkSupport.h> 21 #include <kernel/groebner_walk/walkProc.h> 22 22 #include <polys/prCopy.h> 23 23 -
kernel/groebner_walk/walkProc.h
r8e0955 r66b1de7 1 1 #ifndef WALKPROC_H 2 2 #define WALKPROC_H 3 #include <kernel/ walkMain.h>3 #include <kernel/groebner_walk/walkMain.h> 4 4 ideal walkProc(leftv first, leftv second); 5 5 ideal fractalWalkProc(leftv first, leftv second); -
kernel/groebner_walk/walkSupport.cc
r8e0955 r66b1de7 9 9 #include <kernel/ideals.h> 10 10 #include <polys/monomials/ring.h> 11 #include <kernel/ walkSupport.h>11 #include <kernel/groebner_walk/walkSupport.h> 12 12 #include <polys/prCopy.h> 13 13 #include <kernel/kstd1.h> -
kernel/test.cc
r8e0955 r66b1de7 73 73 #include <kernel/fast_maps.h> 74 74 #include <kernel/febase.h> 75 #include <kernel/ walkProc.h>76 #include <kernel/ walkMain.h>77 #include <kernel/ walkSupport.h>75 #include <kernel/groebner_walk/walkProc.h> 76 #include <kernel/groebner_walk/walkMain.h> 77 #include <kernel/groebner_walk/walkSupport.h> 78 78 #include <kernel/khstd.h> 79 79 /// #include <kernel/sparsmat.h> // TODO: install polys/this! … … 162 162 163 163 #include <kernel/units.h> 164 #include <kernel/ walkMain.h>165 #include <kernel/ walkProc.h>166 #include <kernel/ walkSupport.h>164 #include <kernel/groebner_walk/walkMain.h> 165 #include <kernel/groebner_walk/walkProc.h> 166 #include <kernel/groebner_walk/walkSupport.h> 167 167 168 168 #include <kernel/janet.h>
Note: See TracChangeset
for help on using the changeset viewer.