Changeset 84fc1f in git


Ignore:
Timestamp:
Apr 25, 2012, 8:29:35 PM (11 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'f875bbaccd0831e36aaed09ff6adeb3eb45aeb94')
Children:
fe02b179f9d0d756e5341889d22afec48083e992
Parents:
6f8d6f9137c56e72b78c6ae9c87f1d0d5e77bb97
Message:
moved Hans's bigintmat from libmisc to libcoeffs (almost verbatim)
Files:
5 edited
2 moved

Legend:

Unmodified
Added
Removed
  • Singular/grammar.cc

    r6f8d6f r84fc1f  
    105105#include <kernel/longrat.h>
    106106#include <Singular/libparse.h>
     107#include <coeffs/bigintmat.h>
    107108
    108109#if 0
  • Singular/grammar.y

    r6f8d6f r84fc1f  
    4242#include <kernel/longrat.h>
    4343#include <Singular/libparse.h>
     44#include <coeffs/bigintmat.h>
    4445
    4546#if 0
  • Singular/idrec.h

    r6f8d6f r84fc1f  
    1111#include <Singular/attrib.h>
    1212#include <Singular/silink.h>
    13 #include <misc/bigintmat.h>
    1413
     14class bigintmat;
    1515typedef union uutypes      utypes;
    1616union uutypes
  • libpolys/coeffs/Makefile.am

    r6f8d6f r84fc1f  
    2727        numbers.cc rintegers.cc rmodulo2m.cc rmodulon.cc shortfl.cc \
    2828        gnumpc.cc gnumpfl.cc longrat.cc longrat0.cc ffields.cc \
    29         modulop.cc mpr_complex.cc
     29        modulop.cc mpr_complex.cc \
     30  bigintmat.cc
    3031
    3132libcoeffs_la_SOURCES   = $(SOURCES)
     
    3334
    3435libcoeffs_includedir  =$(includedir)/singular/coeffs
    35 libcoeffs_include_HEADERS = coeffs.h numbers.h si_gmp.h gnumpc.h gnumpfl.h longrat.h modulop.h ffields.h rintegers.h rmodulo2m.h rmodulon.h shortfl.h mpr_complex.h mpr_global.h
     36libcoeffs_include_HEADERS = coeffs.h numbers.h si_gmp.h gnumpc.h gnumpfl.h longrat.h modulop.h ffields.h rintegers.h rmodulo2m.h rmodulon.h shortfl.h mpr_complex.h mpr_global.h \
     37  bigintmat.h
    3638
    3739
  • libpolys/coeffs/bigintmat.cc

    r6f8d6f r84fc1f  
    77#include <kernel/mod2.h>
    88//#include <kernel/options.h>
    9 #include <misc/bigintmat.h>
     9#include "bigintmat.h"
    1010#include <omalloc/omalloc.h>
    1111#include <coeffs/longrat.h>
  • libpolys/misc/Makefile.am

    r6f8d6f r84fc1f  
    1717libmisc_g_la_CPPFLAGS = ${AM_CPPFLAGS} -DHAVE_CONFIG_H
    1818
    19 SOURCES  = bigintmat.cc intvec.cc int64vec.cc options.c
     19SOURCES  = intvec.cc int64vec.cc options.c
    2020libmisc_la_SOURCES   = $(SOURCES)
    2121libmisc_g_la_SOURCES = $(SOURCES)
     
    2323
    2424libmisc_includedir = $(includedir)/singular/misc
    25 libmisc_include_HEADERS = mylimits.h options.h bigintmat.h intvec.h int64vec.h
     25libmisc_include_HEADERS = mylimits.h options.h intvec.h int64vec.h
    2626nodist_libmisc_include_HEADERS = auxiliary.h
    2727
Note: See TracChangeset for help on using the changeset viewer.