Changeset ae4f367 in git


Ignore:
Timestamp:
Mar 26, 2014, 9:19:19 AM (10 years ago)
Author:
Adi Popescu <adi_popescum@…>
Branches:
(u'spielwiese', '17f1d200f27c5bd38f5dfc6e8a0879242279d1d8')
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
Message:
Separating Sources kernel/linear_algebra
Files:
1 added
2 edited
5 moved

Legend:

Unmodified
Added
Removed
  • configure.ac

    r5abee96 rae4f367  
    206206AC_CONFIG_FILES([kernel/combinatorics/Makefile])
    207207AC_CONFIG_FILES([kernel/spectrum/Makefile])
     208AC_CONFIG_FILES([kernel/linear_algebra/Makefile])
    208209
    209210AC_CONFIG_SUBDIRS([gfanlib])
  • kernel/Makefile.am

    r5abee96 rae4f367  
    22# TODO: use ${top_srcdir} instead of .. in the above?
    33
    4 SUBDIRS=sample numeric fglm groebner_walk combinatorics spectrum
     4SUBDIRS=sample numeric fglm groebner_walk combinatorics spectrum linear_algebra
    55# kernelsample   
    66
     
    2222    syz.cc syz0.cc syz1.cc syz2.cc syz3.cc \
    2323    timer.cc \
    24     eigenval.cc units.cc \
     24    units.cc \
    2525    fast_mult.cc digitech.cc \
    2626    tgb.cc tgbgauss.cc ringgb.cc f5data.cc f5lists.cc f5gb.cc f5c.cc \
    2727    ratgring.cc shiftgb.cc \
    28     linearAlgebra.cc preimage.cc \
     28    preimage.cc \
    2929    mod2.h \
    30     janet.cc interpolation.cc minpoly.cc \
    31     Minor.cc MinorInterface.cc MinorProcessor.cc
     30    janet.cc interpolation.cc minpoly.cc
    3231 
    33 
    3432libkernel_la_SOURCES   = $(SOURCES)
    3533
     
    6159${builddir}/combinatorics/libcombinatorics.la \
    6260${builddir}/spectrum/libspectrum.la \
     61${builddir}/linear_algebra/liblinear_algebra.la \
    6362${USEPPROCSDYNAMICLDFLAGS} ${USEPPROCSDYNAMICLD} \
    6463${abs_top_builddir}/libpolys/polys/libpolys.la
  • kernel/linear_algebra/Minor.cc

    r5abee96 rae4f367  
    44#include <kernel/mod2.h>
    55
    6 #include "Minor.h"
     6#include <kernel/Minor.h>
    77
    88#include <kernel/structs.h>
  • kernel/linear_algebra/MinorInterface.cc

    r5abee96 rae4f367  
    77// #include <cstdio>
    88
    9 #include "MinorInterface.h"
    10 #include "MinorProcessor.h"
     9#include <kernel/MinorInterface.h>
     10#include <kernel/MinorProcessor.h>
    1111
    1212#include <polys/simpleideals.h>
  • kernel/linear_algebra/MinorProcessor.cc

    r5abee96 rae4f367  
    44#include <kernel/mod2.h>
    55
    6 #include "MinorProcessor.h"
     6#include <kernel/MinorProcessor.h>
    77
    88#include <polys/kbuckets.h>
  • kernel/linear_algebra/linearAlgebra.cc

    r5abee96 rae4f367  
    1919#include "singularconfig.h"
    2020#endif /* HAVE_CONFIG_H */
    21 #include "mod2.h"
     21#include <kernel/mod2.h>
    2222
    2323#include <coeffs/coeffs.h>
Note: See TracChangeset for help on using the changeset viewer.