Changeset 2d805a in git


Ignore:
Timestamp:
Nov 16, 2010, 5:22:08 PM (13 years ago)
Author:
Oleksandr Motsak <motsak@…>
Branches:
(u'spielwiese', '0d6b7fcd9813a1ca1ed4220cfa2b104b97a0a003')
Children:
bd911c0f0e71a503697bb7fe7b760df56c76182f
Parents:
c3782732bd93dd04f797ead6544eb95174bcbffe
git-author:
Oleksandr Motsak <motsak@mathematik.uni-kl.de>2010-11-16 17:22:08+01:00
git-committer:
Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:55:40+01:00
Message:
Fixed to "#include <component/header.h>" (even for config.h!)
Files:
30 edited

Legend:

Unmodified
Added
Removed
  • coeffs/coeffs.h

    rc37827 r2d805a  
    1212/* for assume: */
    1313#include <reporter/reporter.h>
    14 #include <si_gmp.h>
     14#include <coeffs/si_gmp.h>
    1515
    1616enum n_coeffType
  • coeffs/ffields.cc

    rc37827 r2d805a  
    99#include <misc/auxiliary.h>
    1010#include <string.h>
    11 #include "coeffs.h"
     11#include <coeffs/coeffs.h>
    1212#include <misc/mylimits.h>
    1313#include <omalloc/omalloc.h>
    1414#include <reporter/reporter.h>
    15 #include "numbers.h"
    16 #include "ffields.h"
     15#include <coeffs/numbers.h>
     16#include <coeffs/ffields.h>
    1717#include <resources/feFopen.h>
    1818#include <math.h>
  • coeffs/ffields.h

    rc37827 r2d805a  
    88* ABSTRACT: finite fields with a none-prime number of elements (via tables)
    99*/
    10 #include "coeffs.h"
     10#include <coeffs/coeffs.h>
    1111
    1212// #define MAX_INT_VAL 0x7fffffff
  • coeffs/gnumpc.cc

    rc37827 r2d805a  
    99*/
    1010
    11 #include "config.h"
    12 
    13 #include "coeffs.h"
    14 #include "numbers.h"
    15 #include "longrat.h"
    16 #include "modulop.h"
    17 #include "gnumpc.h"
    18 #include "gnumpfl.h"
    19 #include "mpr_complex.h"
     11#include <coeffs/config.h>
     12
     13#include <coeffs/coeffs.h>
     14#include <coeffs/numbers.h>
     15#include <coeffs/longrat.h>
     16#include <coeffs/modulop.h>
     17#include <coeffs/gnumpc.h>
     18#include <coeffs/gnumpfl.h>
     19#include <coeffs/mpr_complex.h>
    2020#include <reporter/reporter.h>
    2121#include <omalloc/omalloc.h>
    2222
    2323
    24 #include "shortfl.h"
     24#include <coeffs/shortfl.h>
    2525
    2626/// Our Type!
  • coeffs/gnumpc.h

    rc37827 r2d805a  
    88* ABSTRACT: computations with GMP floating-point numbers
    99*/
    10 #include "coeffs.h"
     10#include <coeffs/coeffs.h>
    1111
    1212/// Get a mapping function from src into the domain of this type: long_C!
  • coeffs/gnumpfl.cc

    rc37827 r2d805a  
    99*/
    1010
    11 #include "config.h"
    12 #include "coeffs.h"
     11#include <coeffs/config.h>
     12#include <coeffs/coeffs.h>
    1313#include <omalloc/omalloc.h>
    1414#include <reporter/reporter.h>
    15 #include "numbers.h"
    16 #include "modulop.h"
    17 #include "longrat.h"
    18 #include "shortfl.h"
    19 
    20 #include <gnumpfl.h>
    21 #include <mpr_complex.h>
     15#include <coeffs/numbers.h>
     16#include <coeffs/modulop.h>
     17#include <coeffs/longrat.h>
     18#include <coeffs/shortfl.h>
     19
     20#include <coeffs/gnumpfl.h>
     21#include <coeffs/mpr_complex.h>
    2222
    2323extern size_t gmp_output_digits;
  • coeffs/gnumpfl.h

    rc37827 r2d805a  
    88* ABSTRACT: computations with GMP floating-point numbers
    99*/
    10 #include "coeffs.h"
     10#include <coeffs/coeffs.h>
    1111
    1212/// Get a mapping function from src into the domain of this type:
  • coeffs/longrat.cc

    rc37827 r2d805a  
    4545#include <string.h>
    4646#include <float.h>
    47 #include "config.h"
    48 #include "coeffs.h"
     47#include <coeffs/config.h>
     48#include <coeffs/coeffs.h>
    4949#include <reporter/reporter.h>
    5050#include <omalloc/omalloc.h>
    51 #include "numbers.h"
    52 #include "modulop.h"
    53 #include "shortfl.h"
    54 #include "mpr_complex.h"
    55 #include "longrat.h"
     51#include <coeffs/numbers.h>
     52#include <coeffs/modulop.h>
     53#include <coeffs/shortfl.h>
     54#include <coeffs/mpr_complex.h>
     55#include <coeffs/longrat.h>
    5656
    5757
  • coeffs/longrat.h

    rc37827 r2d805a  
    88* ABSTRACT: computation with long rational numbers
    99*/
    10 #include "coeffs.h"
    11 // #include "config.h"
    12 #include "si_gmp.h"
     10#include <coeffs/coeffs.h>
     11// #include <coeffs/config.h>
     12#include <coeffs/si_gmp.h>
    1313#include <misc/auxiliary.h>
    1414#include <omalloc/omalloc.h>
  • coeffs/longrat0.cc

    rc37827 r2d805a  
    1010#include <stdio.h>
    1111#include <string.h>
    12 #include "config.h"
     12#include <coeffs/config.h>
    1313#include <reporter/reporter.h>
    14 #include "coeffs.h"
     14#include <coeffs/coeffs.h>
    1515#include <omalloc/omalloc.h>
    16 #include "longrat.h"
    17 #include "numbers.h"
     16#include <coeffs/longrat.h>
     17#include <coeffs/numbers.h>
    1818
    1919#define SR_HDL(A) ((long)(A))
  • coeffs/modulop.cc

    rc37827 r2d805a  
    88
    99#include <string.h>
    10 #include "config.h"
     10#include <coeffs/config.h>
    1111#include <omalloc/omalloc.h>
    12 #include "coeffs.h"
     12#include <coeffs/coeffs.h>
    1313#include <reporter/reporter.h>
    14 #include "numbers.h"
    15 #include "longrat.h"
    16 #include "mpr_complex.h"
     14#include <coeffs/numbers.h>
     15#include <coeffs/longrat.h>
     16#include <coeffs/mpr_complex.h>
    1717#include <misc/mylimits.h>
    18 #include "modulop.h"
     18#include <coeffs/modulop.h>
    1919#ifdef HAVE_FACTORY
    20 #include <factory.h>
     20#include <factory/factory.h>
    2121#endif
    2222
  • coeffs/modulop.h

    rc37827 r2d805a  
    88* ABSTRACT: numbers modulo p (<=32003)
    99*/
    10 #include "coeffs.h"
     10#include <coeffs/coeffs.h>
    1111
    1212// defines are in struct.h
  • coeffs/mpr_complex.cc

    rc37827 r2d805a  
    1212// WARNING! ALWAYS use omAlloc and FreeL when alloc. memory for some char* !!
    1313
    14 #include "config.h"
     14#include <coeffs/config.h>
    1515//#ifdef HAVE_MPR
    16 #include "coeffs.h"
     16#include <coeffs/coeffs.h>
    1717#include <reporter/reporter.h>
    1818#include <omalloc/omalloc.h>
    19 #include "numbers.h"
    20 #include "longrat.h"
     19#include <coeffs/numbers.h>
     20#include <coeffs/longrat.h>
    2121#include <math.h>
    22 #include <mpr_complex.h>
     22#include <coeffs/mpr_complex.h>
    2323
    2424//%s
  • coeffs/mpr_complex.h

    rc37827 r2d805a  
    1414//-> include & define stuff
    1515// must have gmp version >= 2
    16 #include "si_gmp.h"
    17 #include "mpr_global.h"
     16#include <coeffs/si_gmp.h>
     17#include <coeffs/mpr_global.h>
    1818
    1919#define ZTOF 1
  • coeffs/numbers.cc

    rc37827 r2d805a  
    88*/
    99
    10 #include "config.h"
     10#include <coeffs/config.h>
    1111#include <misc/auxiliary.h>
    1212
    1313
    1414
    15 #include "coeffs.h"
    16 
    17 #include "numbers.h"
     15#include <coeffs/coeffs.h>
     16
     17#include <coeffs/numbers.h>
    1818
    1919#include <reporter/reporter.h>
    2020#include <omalloc/omalloc.h>
    21 #include "numbers.h"
    22 #include "longrat.h"
    23 #include "modulop.h"
    24 #include "gnumpfl.h"
    25 #include "gnumpc.h"
    26 #include "ffields.h"
    27 #include "shortfl.h"
    28 #include "longtrans.h"
     21#include <coeffs/numbers.h>
     22#include <coeffs/longrat.h>
     23#include <coeffs/modulop.h>
     24#include <coeffs/gnumpfl.h>
     25#include <coeffs/gnumpc.h>
     26#include <coeffs/ffields.h>
     27#include <coeffs/shortfl.h>
    2928#ifdef HAVE_RINGS
    30 #include <rmodulo2m.h>
    31 #include <rmodulon.h>
    32 #include <rintegers.h>
     29#include <coeffs/rmodulo2m.h>
     30#include <coeffs/rmodulon.h>
     31#include <coeffs/rintegers.h>
    3332#endif
    3433#include <string.h>
  • coeffs/numbers.h

    rc37827 r2d805a  
    88* ABSTRACT: interface to coefficient aritmetics
    99*/
    10 #include "coeffs.h"
     10#include <coeffs/coeffs.h>
    1111
    1212#define SHORT_REAL_LENGTH 6 // use short reals for real <= 6 digits
  • coeffs/rintegers.cc

    rc37827 r2d805a  
    66* ABSTRACT: numbers modulo n
    77*/
    8 #include "config.h"
     8#include <coeffs/config.h>
    99#include <misc/auxiliary.h>
    1010
     
    1313#include <string.h>
    1414#include <misc/mylimits.h>
    15 #include "coeffs.h"
     15#include <coeffs/coeffs.h>
    1616#include <reporter/reporter.h>
    1717#include <omalloc/omalloc.h>
    18 #include "numbers.h"
    19 #include "longrat.h"
    20 #include "mpr_complex.h"
    21 #include "rintegers.h"
     18#include <coeffs/numbers.h>
     19#include <coeffs/longrat.h>
     20#include <coeffs/mpr_complex.h>
     21#include <coeffs/rintegers.h>
    2222#include <coeffs/si_gmp.h>
    2323
  • coeffs/rintegers.h

    rc37827 r2d805a  
    99*/
    1010#ifdef HAVE_RINGS
    11 #include "coeffs.h"
     11#include <coeffs/coeffs.h>
    1212
    1313extern int nrzExp;
  • coeffs/rmodulo2m.cc

    rc37827 r2d805a  
    77*/
    88
    9 #include "config.h"
     9#include <coeffs/config.h>
    1010#include <misc/auxiliary.h>
    1111
     
    1313
    1414#include <misc/mylimits.h>
    15 #include "coeffs.h"
     15#include <coeffs/coeffs.h>
    1616#include <reporter/reporter.h>
    1717#include <omalloc/omalloc.h>
    18 #include "numbers.h"
    19 #include "longrat.h"
    20 #include "mpr_complex.h"
    21 #include "rmodulo2m.h"
     18#include <coeffs/numbers.h>
     19#include <coeffs/longrat.h>
     20#include <coeffs/mpr_complex.h>
     21#include <coeffs/rmodulo2m.h>
    2222#include <coeffs/si_gmp.h>
    2323
  • coeffs/rmodulo2m.h

    rc37827 r2d805a  
    1010*/
    1111#ifdef HAVE_RINGS
    12 #include "coeffs.h"
    13 #include "rintegers.h"
     12#include <coeffs/coeffs.h>
     13#include <coeffs/rintegers.h>
    1414
    1515#ifndef NATNUMBER
  • coeffs/rmodulon.cc

    rc37827 r2d805a  
    77*/
    88
    9 #include "config.h"
     9#include <coeffs/config.h>
    1010#include <misc/auxiliary.h>
    1111
     
    1313
    1414#include <misc/mylimits.h>
    15 #include "coeffs.h"
     15#include <coeffs/coeffs.h>
    1616#include <reporter/reporter.h>
    1717#include <omalloc/omalloc.h>
    18 #include "numbers.h"
    19 #include "longrat.h"
    20 #include "mpr_complex.h"
    21 #include "rmodulon.h"
    22 #include "si_gmp.h"
     18#include <coeffs/numbers.h>
     19#include <coeffs/longrat.h>
     20#include <coeffs/mpr_complex.h>
     21#include <coeffs/rmodulon.h>
     22#include <coeffs/si_gmp.h>
    2323
    2424#include <string.h>
  • coeffs/rmodulon.h

    rc37827 r2d805a  
    99*/
    1010#ifdef HAVE_RINGS
    11 #include "coeffs.h"
    12 #include "rintegers.h"
     11#include <coeffs/coeffs.h>
     12#include <coeffs/rintegers.h>
    1313
    1414#ifndef NATNUMBER
  • coeffs/shortfl.cc

    rc37827 r2d805a  
    88*/
    99
    10 #include "shortfl.h"
     10#include <coeffs/shortfl.h>
    1111
    1212#include <string.h>
    13 #include "coeffs.h"
     13#include <coeffs/coeffs.h>
    1414#include <reporter/reporter.h>
    15 #include "numbers.h"
    16 #include "longrat.h"
    17 #include "mpr_complex.h"
     15#include <coeffs/numbers.h>
     16#include <coeffs/longrat.h>
     17#include <coeffs/mpr_complex.h>
    1818
    1919#include <misc/mylimits.h>
  • coeffs/shortfl.h

    rc37827 r2d805a  
    88*/
    99/* $Id$ */
    10 #include "coeffs.h"
     10#include <coeffs/coeffs.h>
    1111
    1212
  • coeffs/si_gmp.h

    rc37827 r2d805a  
    44#define INCL_CF_GMP_H
    55#ifdef HAVE_FACTORY
    6 #include <cf_gmp.h>
     6#include <factory/cf_gmp.h>
    77#else
    88#if defined(__cplusplus) && defined(__GNUC__)
  • coeffs/test.cc

    rc37827 r2d805a  
    1 #include "config.h"
     1#include <coeffs/config.h>
    22
    33#include <misc/auxiliary.h>
    44
    5 #include <coeffs.h>
    6 #include <numbers.h>
     5#include <coeffs/coeffs.h>
     6#include <coeffs/numbers.h>
    77#include <reporter/reporter.h>
    88#include <omalloc/omalloc.h>
    99
    10 #include <longrat.h>
    11 #include <gnumpfl.h>
    12 #include <gnumpc.h>
    13 #include <shortfl.h>
    14 #include <ffields.h>
    15 #include <modulop.h>
    16 #include <rmodulon.h>
    17 #include <rmodulo2m.h>
    18 #include <rintegers.h>
     10#include <coeffs/longrat.h>
     11#include <coeffs/gnumpfl.h>
     12#include <coeffs/gnumpc.h>
     13#include <coeffs/shortfl.h>
     14#include <coeffs/ffields.h>
     15#include <coeffs/modulop.h>
     16#include <coeffs/rmodulon.h>
     17#include <coeffs/rmodulo2m.h>
     18#include <coeffs/rintegers.h>
    1919
    2020#include <iostream>
  • reporter/dError.c

    rc37827 r2d805a  
    1313#include <stdarg.h>
    1414#include <stdio.h>
    15 #include "config.h"
    16 #include "reporter.h"
     15#include <reporter/config.h>
     16#include <reporter/reporter.h>
    1717#ifdef HAVE_CONFIG_H
    1818#include <omalloc/omalloc.h>
  • reporter/reporter.cc

    rc37827 r2d805a  
    77*/
    88
    9 #include "config.h"
     9#include <reporter/config.h>
    1010
    1111#include <stdlib.h>
     
    1818
    1919#ifdef HAVE_PWD_H
    20 #include "pwd.h"
    21 #endif
    22 
    23 #include "reporter.h"
     20#include <pwd.h>
     21#endif
     22
     23#include <reporter/reporter.h>
    2424#include <omalloc/omalloc.h>
    2525//#include "options.h"
  • resources/feFopen.cc

    rc37827 r2d805a  
    66#include <unistd.h>
    77
    8 #include "config.h"
     8#include <resources/config.h>
    99
    1010#include <misc/auxiliary.h>
     
    1313#include <reporter/reporter.h>
    1414
    15 #include "feFopen.h"
    16 #include "feResource.h"
     15#include <resources/feFopen.h>
     16#include <resources/feResource.h>
    1717
    1818
  • resources/feResource.cc

    rc37827 r2d805a  
    1111#include <string.h>
    1212
    13 #include "config.h"
     13#include <resources/config.h>
    1414
    1515#include <misc/auxiliary.h>
    1616
    17 #include "feResource.h"
     17#include <resources/feResource.h>
    1818
    1919
Note: See TracChangeset for help on using the changeset viewer.