Changeset 810491 in git for libpolys


Ignore:
Timestamp:
Nov 29, 2014, 7:57:05 PM (9 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', '6e5adcba05493683b94648c659a729c189812c77')
Children:
a3cc3fc3171dee60192b2d6a9f0049cc7bed99a8
Parents:
2206753e05a96ad86c2ff231f55a8d71d57edeae
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2014-11-29 19:57:05+01:00
git-committer:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2014-12-15 18:49:40+01:00
Message:
Fix including "libpolys/" and removal of unnecessary header includes + minor cleanup
Location:
libpolys
Files:
17 edited

Legend:

Unmodified
Added
Removed
  • libpolys/coeffs/AE.cc

    r2206753 r810491  
    1 #include <gmp.h>
     1#include <misc/auxiliary.h>
     2#include <omalloc/omalloc.h>
     3
     4#include "AE.h"
     5
    26#include <math.h>
    3 #include "AE.h"
    4 
    57
    68#ifdef SINGULAR_4_1
  • libpolys/coeffs/AE.h

    r2206753 r810491  
    22#define AE_H
    33
    4 
    5 #include <gmp.h>
    6 #include <omalloc/omalloc.h>
    74#include <misc/auxiliary.h>
     5#include "si_gmp.h"
    86
    97#ifdef SINGULAR_4_1
    10 
    118
    129class int_poly // Klasse von int_polynomen mit Typ (Grad, Koeffizienten ganzzahlig)
  • libpolys/coeffs/AEQ.cc

    r2206753 r810491  
     1#include <misc/auxiliary.h>
     2#include <omalloc/omalloc.h>
     3
     4#include "AEQ.h"
     5
    16#include <stdio.h>
    2 #include <gmp.h>
    37#include <math.h>
    4 #include "AEQ.h"
    5 
    6 
    78#ifdef SINGULAR_4_1
    89
  • libpolys/coeffs/AEQ.h

    r2206753 r810491  
    22#define QPOLY
    33
    4 
    5 #include <gmp.h>
    6 #include <omalloc/omalloc.h>
    74#include <misc/auxiliary.h>
     5#include "si_gmp.h"
    86
    97#ifdef SINGULAR_4_1
  • libpolys/coeffs/AEp.cc

    r2206753 r810491  
     1#include <misc/auxiliary.h>
     2#include <omalloc/omalloc.h>
     3
     4#include "AEp.h"
     5
    16#include <stdio.h>
    2 #include <gmp.h>
    37#include <math.h>
    4 #include "AEp.h"
    5 
    6 
    78#ifdef SINGULAR_4_1
    89
  • libpolys/coeffs/AEp.h

    r2206753 r810491  
    22#define AEP_H
    33
    4 
    5 #include <gmp.h>
    6 #include <omalloc/omalloc.h>
    74#include <misc/auxiliary.h>
     5#include "si_gmp.h"
    86
    97#ifdef SINGULAR_4_1
    10 
    11 
    128
    139class p_poly // Klasse von p_polynomen mit Typ (Grad, Koeffizienten ganzzahlig)
  • libpolys/coeffs/numbers.cc

    r2206753 r810491  
    1919#include <coeffs/numbers.h>
    2020
    21 #include <coeffs/numbers.h>
    2221#include <coeffs/longrat.h>
    2322#include <coeffs/modulop.h>
     
    2827
    2928#ifdef HAVE_RINGS
    30 #include <coeffs/rmodulo2m.h>
    31 #include <coeffs/rmodulon.h>
    32 #include <coeffs/rintegers.h>
     29# include <coeffs/rmodulo2m.h>
     30# include <coeffs/rmodulon.h>
     31# include <coeffs/rintegers.h>
    3332#endif
    3433
  • libpolys/coeffs/test.cc

    r2206753 r810491  
    88#include <resources/feResource.h>
    99
    10 #include <coeffs/coeffs.h>
    11 #include <coeffs/numbers.h>
    12 
    13 #include <coeffs/longrat.h>
    14 #include <coeffs/gnumpfl.h>
    15 #include <coeffs/gnumpc.h>
    16 #include <coeffs/shortfl.h>
    17 #include <coeffs/ffields.h>
    18 #include <coeffs/modulop.h>
    19 #include <coeffs/rmodulon.h>
    20 #include <coeffs/rmodulo2m.h>
    21 #include <coeffs/rintegers.h>
     10#include "coeffs.h"
     11#include "numbers.h"
     12
     13#include "longrat.h"
     14#include "gnumpfl.h"
     15#include "gnumpc.h"
     16#include "shortfl.h"
     17#include "ffields.h"
     18#include "modulop.h"
     19#include "rmodulon.h"
     20#include "rmodulo2m.h"
     21#include "rintegers.h"
    2222
    2323
  • libpolys/polys/clapconv.cc

    r2206753 r810491  
    1212
    1313#include <misc/auxiliary.h>
     14#include <omalloc/omalloc.h>
    1415
    1516#include <factory/factory.h>
    1617
    17 #include <omalloc/omalloc.h>
    1818#include <coeffs/coeffs.h>
    19 #include <coeffs/longrat.h>
    20 #include <coeffs/modulop.h>
     19
     20#include <coeffs/longrat.h> // snumber is necessary
     21
    2122#include <polys/monomials/p_polys.h>
    2223#include <polys/sbuckets.h>
  • libpolys/polys/ext_fields/algext.cc

    r2206753 r810491  
    4040#include <coeffs/coeffs.h>
    4141#include <coeffs/numbers.h>
    42 #include <coeffs/longrat.h>
    4342
    4443#include <coeffs/longrat.h>
  • libpolys/polys/ext_fields/transext.cc

    r2206753 r810491  
    3333*           TODO: the description above needs a major update!!!
    3434*/
    35 
    36 
    37 
    38 
    39 
    4035#define TRANSEXT_PRIVATES
    4136
    42 
    43 
    44 
    4537#include <misc/auxiliary.h>
    4638
    4739#include <omalloc/omalloc.h>
     40#include <factory/factory.h>
    4841
    4942#include <reporter/reporter.h>
     
    5144#include <coeffs/coeffs.h>
    5245#include <coeffs/numbers.h>
     46
    5347#include <coeffs/longrat.h>
    5448
     
    5953#include <polys/clapsing.h>
    6054#include <polys/clapconv.h>
    61 #include <factory/factory.h>
    62 
    63 #include <polys/ext_fields/transext.h>
     55
    6456#include <polys/prCopy.h>
     57#include "transext.h"
     58#include "algext.h"
    6559
    6660#include <polys/PolyEnumerator.h>
  • libpolys/polys/monomials/p_polys.cc

    r2206753 r810491  
    99 *******************************************************************/
    1010
    11 
    12 
    13 
    14 
    15 
    1611#include <ctype.h>
    1712
     
    2318#include <misc/intvec.h>
    2419
    25 #include <coeffs/longrat.h> // ???
    26 #include <coeffs/ffields.h>
     20
     21#include <coeffs/longrat.h> // snumber is needed...
    2722
    2823#include <polys/PolyEnumerator.h>
  • libpolys/polys/monomials/ring.cc

    r2206753 r810491  
    2222#include <coeffs/numbers.h>
    2323#include <coeffs/coeffs.h>
    24 #include <coeffs/rmodulon.h>
    2524
    2625#include <polys/monomials/p_polys.h>
  • libpolys/polys/operations/p_Mult_q.cc

    r2206753 r810491  
    99 *******************************************************************/
    1010
    11 
    12 
    1311#include <misc/auxiliary.h>
    14 
    1512#include <factory/factory.h>
    1613
     
    1815
    1916#include <polys/monomials/p_polys.h>
     17#include <polys/kbuckets.h>
     18
    2019#include <polys/templates/p_Procs.h>
    2120#include <polys/templates/p_MemCmp.h>
    2221#include <polys/templates/p_MemAdd.h>
    2322#include <polys/templates/p_MemCopy.h>
    24 #include <polys/templates/p_Numbers.h>
    25 #include <polys/kbuckets.h>
    2623
    2724#include "p_Mult_q.h"
  • libpolys/polys/templates/p_Procs_Set.h

    r2206753 r810491  
    1313 *  Created: 12/00
    1414 *******************************************************************/
    15 #include <coeffs/modulop.h>
    1615
    1716#include <reporter/reporter.h>
  • libpolys/tests/polys_test.h

    r2206753 r810491  
    33
    44// the following headers are private...
    5 #include <coeffs/longrat.h>
    6 #include <coeffs/gnumpfl.h>
    7 #include <coeffs/gnumpc.h>
    8 #include <coeffs/shortfl.h>
    9 #include <coeffs/ffields.h>
    10 #include <coeffs/modulop.h>
    11 #include <coeffs/rmodulon.h>
    12 #include <coeffs/rmodulo2m.h>
    13 #include <coeffs/rintegers.h>
    145
    156
  • libpolys/tests/rings_test.h

    r2206753 r810491  
    33
    44// the following headers are private...
    5 #include <coeffs/longrat.h>
    6 #include <coeffs/gnumpfl.h>
    7 #include <coeffs/gnumpc.h>
    8 #include <coeffs/shortfl.h>
    9 #include <coeffs/ffields.h>
    10 #include <coeffs/modulop.h>
    11 #include <coeffs/rmodulon.h>
    12 #include <coeffs/rmodulo2m.h>
    13 #include <coeffs/rintegers.h>
    145
    156
Note: See TracChangeset for help on using the changeset viewer.