Changeset 4e8926 in git


Ignore:
Timestamp:
Mar 26, 2014, 10:49:18 AM (10 years ago)
Author:
Adi Popescu <adi_popescum@…>
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
Message:
Separating Sources kernel/GBEngine
Files:
1 added
2 edited
27 moved

Legend:

Unmodified
Added
Removed
  • configure.ac

    r49638b r4e8926  
    208208AC_CONFIG_FILES([kernel/linear_algebra/Makefile])
    209209AC_CONFIG_FILES([kernel/maps/Makefile])
     210AC_CONFIG_FILES([kernel/GBEngine/Makefile])
    210211
    211212AC_CONFIG_SUBDIRS([gfanlib])
  • kernel/GBEngine/gr_kstd2.cc

    r49638b r4e8926  
    1010#include "singularconfig.h"
    1111#endif /* HAVE_CONFIG_H */
    12 #include "mod2.h"
     12#include <kernel/mod2.h>
    1313
    1414#ifdef HAVE_PLURAL
  • kernel/GBEngine/janet.cc

    r49638b r4e8926  
    2020// #include "subexpr.h"
    2121
    22 #include "janet.h"
     22#include <kernel/janet.h>
    2323
    2424
  • kernel/GBEngine/kpolys.cc

    r49638b r4e8926  
    22#include "singularconfig.h"
    33#endif /* HAVE_CONFIG_H */
    4 #include "mod2.h"
     4#include <kernel/mod2.h>
    55
    66#include <omalloc/omalloc.h>
    77#include <misc/auxiliary.h>
    88
    9 #include "polys.h"
     9#include <kernel/polys.h>
    1010
    1111
  • kernel/GBEngine/kstd1.cc

    r49638b r4e8926  
    2525#include "singularconfig.h"
    2626#endif /* HAVE_CONFIG_H */
    27 #include "mod2.h"
     27#include <kernel/mod2.h>
    2828
    2929#include <omalloc/omalloc.h>
  • kernel/GBEngine/kutil.cc

    r49638b r4e8926  
    1414#include "singularconfig.h"
    1515#endif /* HAVE_CONFIG_H */
    16 #include "mod2.h"
     16#include <kernel/mod2.h>
    1717
    1818#ifndef SING_NDEBUG
  • kernel/GBEngine/nc.cc

    r49638b r4e8926  
    44#include "singularconfig.h"
    55#endif /* HAVE_CONFIG_H */
    6 #include "mod2.h"
     6#include <kernel/mod2.h>
    77#include <misc/auxiliary.h>
    88
  • kernel/GBEngine/sca.cc

    r49638b r4e8926  
    44#include "singularconfig.h"
    55#endif /* HAVE_CONFIG_H */
    6 #include "mod2.h"
     6#include <kernel/mod2.h>
    77#include <misc/auxiliary.h>
    88
     
    1515#include <polys/nc/gb_hack.h>
    1616
    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>
    2323
    2424/// nc_gr_initBba is needed for sca_gr_bba and gr_bba.
  • kernel/GBEngine/syz2.cc

    r49638b r4e8926  
    1010#endif /* HAVE_CONFIG_H */
    1111
    12 #include "mod2.h"
     12#include <kernel/mod2.h>
    1313
    1414#include <omalloc/omalloc.h>
  • kernel/Makefile.am

    r49638b r4e8926  
    22# TODO: use ${top_srcdir} instead of .. in the above?
    33
    4 SUBDIRS=sample numeric fglm groebner_walk combinatorics spectrum linear_algebra maps
     4SUBDIRS=sample numeric fglm groebner_walk combinatorics spectrum linear_algebra maps GBEngine
    55# kernelsample   
    66
     
    1414SOURCES = polys.cc febase.cc feread.cc \
    1515    ideals.cc \
    16     khstd.cc kstdfac.cc \
    17     kstd1.cc kstd2.cc kutil.cc \
    18     nc.cc sca.cc gr_kstd2.cc \
    1916    misc.cc \
    20     kspoly.cc kpolys.cc \
    21     syz.cc syz0.cc syz1.cc syz2.cc syz3.cc \
    2217    timer.cc \
    23     units.cc \
    2418    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 \
    2719    preimage.cc \
    2820    mod2.h \
    29     janet.cc interpolation.cc minpoly.cc
     21    interpolation.cc minpoly.cc
    3022 
    3123libkernel_la_SOURCES   = $(SOURCES)
     
    5850${builddir}/linear_algebra/liblinear_algebra.la \
    5951${builddir}/maps/libmaps.la \
     52${builddir}/GBEngine/libGBEngine.la \
    6053${USEPPROCSDYNAMICLDFLAGS} ${USEPPROCSDYNAMICLD} \
    6154${abs_top_builddir}/libpolys/polys/libpolys.la
Note: See TracChangeset for help on using the changeset viewer.