Changeset 66b1de7 in git


Ignore:
Timestamp:
Mar 25, 2014, 5:05:42 PM (10 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', '8e0ad00ce244dfd0756200662572aef8402f13d5')
Children:
706551b8742b3f376863feefc0871cbefa877055f2f5ea2fec5d8f364d1161f380e4aa9290565847
Parents:
8e0955e20e5cd5740e86fd4a3c4f51e5d121d22da59c8180c210232bfecb93eed86069167077da88
Message:
Merge pull request #547 from adipopescu/SeparatingSources.groebner_walk

Separating sources: kernel/groebner_walk
Files:
1 added
6 edited
6 moved

Legend:

Unmodified
Added
Removed
  • Singular/iparith.cc

    r8e0955 r66b1de7  
    4949#include <kernel/GMPrat.h>
    5050#include <kernel/tgb.h>
    51 #include <kernel/walkProc.h>
     51#include <kernel/groebner_walk/walkProc.h>
    5252#include <kernel/linearAlgebra.h>
    5353#include <kernel/syz.h>
  • Singular/test.cc

    r8e0955 r66b1de7  
    6868#include <kernel/fast_maps.h>
    6969#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>
    7373#include <kernel/khstd.h>
    7474/// #include <kernel/sparsmat.h> // TODO: install polys/this!
     
    163163
    164164#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>
    168168
    169169
  • Singular/walk_ip.cc

    r8e0955 r66b1de7  
    4646#include <kernel/hutil.h>
    4747#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>
    5151#include <polys/prCopy.h>
    5252
  • configure.ac

    r8e0955 r66b1de7  
    203203AC_CONFIG_FILES([kernel/numeric/Makefile])
    204204AC_CONFIG_FILES([kernel/fglm/Makefile])
     205AC_CONFIG_FILES([kernel/groebner_walk/Makefile])
    205206
    206207AC_CONFIG_SUBDIRS([gfanlib])
  • kernel/Makefile.am

    r8e0955 r66b1de7  
    22# TODO: use ${top_srcdir} instead of .. in the above?
    33
    4 SUBDIRS=sample numeric fglm
     4SUBDIRS=sample numeric fglm groebner_walk
    55# kernelsample   
    66
     
    2424    timer.cc \
    2525    GMPrat.cc multicnt.cc npolygon.cc semic.cc spectrum.cc splist.cc \
    26     walkProc.cc walkMain.cc walkSupport.cc \
    2726    eigenval.cc units.cc \
    2827    fast_mult.cc digitech.cc \
     
    4241        fast_maps.h \
    4342        febase.h \
    44         walkProc.h walkMain.h walkSupport.h\
    4543        kstdfac.h kmatrix.h\
    4644        kutil.h \
     
    6361${builddir}/numeric/libnumeric.la \
    6462${builddir}/fglm/libfglm.la \
     63${builddir}/groebner_walk/libgroebner_walk.la \
    6564${USEPPROCSDYNAMICLDFLAGS} ${USEPPROCSDYNAMICLD} \
    6665${abs_top_builddir}/libpolys/polys/libpolys.la
  • kernel/groebner_walk/walkMain.cc

    r8e0955 r66b1de7  
    1717#include <kernel/ideals.h>
    1818#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>
    2121#include <polys/prCopy.h>
    2222#include <kernel/kstd1.h>
  • kernel/groebner_walk/walkProc.cc

    r8e0955 r66b1de7  
    1717#include <kernel/kstd1.h>
    1818#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>
    2222#include <polys/prCopy.h>
    2323
  • kernel/groebner_walk/walkProc.h

    r8e0955 r66b1de7  
    11#ifndef WALKPROC_H
    22#define WALKPROC_H
    3 #include <kernel/walkMain.h>
     3#include <kernel/groebner_walk/walkMain.h>
    44ideal walkProc(leftv first, leftv second);
    55ideal fractalWalkProc(leftv first, leftv second);
  • kernel/groebner_walk/walkSupport.cc

    r8e0955 r66b1de7  
    99#include <kernel/ideals.h>
    1010#include <polys/monomials/ring.h>
    11 #include <kernel/walkSupport.h>
     11#include <kernel/groebner_walk/walkSupport.h>
    1212#include <polys/prCopy.h>
    1313#include <kernel/kstd1.h>
  • kernel/test.cc

    r8e0955 r66b1de7  
    7373#include <kernel/fast_maps.h>
    7474#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>
    7878#include <kernel/khstd.h>
    7979/// #include <kernel/sparsmat.h> // TODO: install polys/this!
     
    162162
    163163#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>
    167167
    168168#include <kernel/janet.h>
Note: See TracChangeset for help on using the changeset viewer.