Changeset 2d805a in git
- Timestamp:
- Nov 16, 2010, 5:22:08 PM (13 years ago)
- 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
- Files:
-
- 30 edited
Legend:
- Unmodified
- Added
- Removed
-
coeffs/coeffs.h
rc37827 r2d805a 12 12 /* for assume: */ 13 13 #include <reporter/reporter.h> 14 #include < si_gmp.h>14 #include <coeffs/si_gmp.h> 15 15 16 16 enum n_coeffType -
coeffs/ffields.cc
rc37827 r2d805a 9 9 #include <misc/auxiliary.h> 10 10 #include <string.h> 11 #include "coeffs.h"11 #include <coeffs/coeffs.h> 12 12 #include <misc/mylimits.h> 13 13 #include <omalloc/omalloc.h> 14 14 #include <reporter/reporter.h> 15 #include "numbers.h"16 #include "ffields.h"15 #include <coeffs/numbers.h> 16 #include <coeffs/ffields.h> 17 17 #include <resources/feFopen.h> 18 18 #include <math.h> -
coeffs/ffields.h
rc37827 r2d805a 8 8 * ABSTRACT: finite fields with a none-prime number of elements (via tables) 9 9 */ 10 #include "coeffs.h"10 #include <coeffs/coeffs.h> 11 11 12 12 // #define MAX_INT_VAL 0x7fffffff -
coeffs/gnumpc.cc
rc37827 r2d805a 9 9 */ 10 10 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> 20 20 #include <reporter/reporter.h> 21 21 #include <omalloc/omalloc.h> 22 22 23 23 24 #include "shortfl.h"24 #include <coeffs/shortfl.h> 25 25 26 26 /// Our Type! -
coeffs/gnumpc.h
rc37827 r2d805a 8 8 * ABSTRACT: computations with GMP floating-point numbers 9 9 */ 10 #include "coeffs.h"10 #include <coeffs/coeffs.h> 11 11 12 12 /// Get a mapping function from src into the domain of this type: long_C! -
coeffs/gnumpfl.cc
rc37827 r2d805a 9 9 */ 10 10 11 #include "config.h"12 #include "coeffs.h"11 #include <coeffs/config.h> 12 #include <coeffs/coeffs.h> 13 13 #include <omalloc/omalloc.h> 14 14 #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> 22 22 23 23 extern size_t gmp_output_digits; -
coeffs/gnumpfl.h
rc37827 r2d805a 8 8 * ABSTRACT: computations with GMP floating-point numbers 9 9 */ 10 #include "coeffs.h"10 #include <coeffs/coeffs.h> 11 11 12 12 /// Get a mapping function from src into the domain of this type: -
coeffs/longrat.cc
rc37827 r2d805a 45 45 #include <string.h> 46 46 #include <float.h> 47 #include "config.h"48 #include "coeffs.h"47 #include <coeffs/config.h> 48 #include <coeffs/coeffs.h> 49 49 #include <reporter/reporter.h> 50 50 #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> 56 56 57 57 -
coeffs/longrat.h
rc37827 r2d805a 8 8 * ABSTRACT: computation with long rational numbers 9 9 */ 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> 13 13 #include <misc/auxiliary.h> 14 14 #include <omalloc/omalloc.h> -
coeffs/longrat0.cc
rc37827 r2d805a 10 10 #include <stdio.h> 11 11 #include <string.h> 12 #include "config.h"12 #include <coeffs/config.h> 13 13 #include <reporter/reporter.h> 14 #include "coeffs.h"14 #include <coeffs/coeffs.h> 15 15 #include <omalloc/omalloc.h> 16 #include "longrat.h"17 #include "numbers.h"16 #include <coeffs/longrat.h> 17 #include <coeffs/numbers.h> 18 18 19 19 #define SR_HDL(A) ((long)(A)) -
coeffs/modulop.cc
rc37827 r2d805a 8 8 9 9 #include <string.h> 10 #include "config.h"10 #include <coeffs/config.h> 11 11 #include <omalloc/omalloc.h> 12 #include "coeffs.h"12 #include <coeffs/coeffs.h> 13 13 #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> 17 17 #include <misc/mylimits.h> 18 #include "modulop.h"18 #include <coeffs/modulop.h> 19 19 #ifdef HAVE_FACTORY 20 #include <factory .h>20 #include <factory/factory.h> 21 21 #endif 22 22 -
coeffs/modulop.h
rc37827 r2d805a 8 8 * ABSTRACT: numbers modulo p (<=32003) 9 9 */ 10 #include "coeffs.h"10 #include <coeffs/coeffs.h> 11 11 12 12 // defines are in struct.h -
coeffs/mpr_complex.cc
rc37827 r2d805a 12 12 // WARNING! ALWAYS use omAlloc and FreeL when alloc. memory for some char* !! 13 13 14 #include "config.h"14 #include <coeffs/config.h> 15 15 //#ifdef HAVE_MPR 16 #include "coeffs.h"16 #include <coeffs/coeffs.h> 17 17 #include <reporter/reporter.h> 18 18 #include <omalloc/omalloc.h> 19 #include "numbers.h"20 #include "longrat.h"19 #include <coeffs/numbers.h> 20 #include <coeffs/longrat.h> 21 21 #include <math.h> 22 #include < mpr_complex.h>22 #include <coeffs/mpr_complex.h> 23 23 24 24 //%s -
coeffs/mpr_complex.h
rc37827 r2d805a 14 14 //-> include & define stuff 15 15 // 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> 18 18 19 19 #define ZTOF 1 -
coeffs/numbers.cc
rc37827 r2d805a 8 8 */ 9 9 10 #include "config.h"10 #include <coeffs/config.h> 11 11 #include <misc/auxiliary.h> 12 12 13 13 14 14 15 #include "coeffs.h"16 17 #include "numbers.h"15 #include <coeffs/coeffs.h> 16 17 #include <coeffs/numbers.h> 18 18 19 19 #include <reporter/reporter.h> 20 20 #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> 29 28 #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> 33 32 #endif 34 33 #include <string.h> -
coeffs/numbers.h
rc37827 r2d805a 8 8 * ABSTRACT: interface to coefficient aritmetics 9 9 */ 10 #include "coeffs.h"10 #include <coeffs/coeffs.h> 11 11 12 12 #define SHORT_REAL_LENGTH 6 // use short reals for real <= 6 digits -
coeffs/rintegers.cc
rc37827 r2d805a 6 6 * ABSTRACT: numbers modulo n 7 7 */ 8 #include "config.h"8 #include <coeffs/config.h> 9 9 #include <misc/auxiliary.h> 10 10 … … 13 13 #include <string.h> 14 14 #include <misc/mylimits.h> 15 #include "coeffs.h"15 #include <coeffs/coeffs.h> 16 16 #include <reporter/reporter.h> 17 17 #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> 22 22 #include <coeffs/si_gmp.h> 23 23 -
coeffs/rintegers.h
rc37827 r2d805a 9 9 */ 10 10 #ifdef HAVE_RINGS 11 #include "coeffs.h"11 #include <coeffs/coeffs.h> 12 12 13 13 extern int nrzExp; -
coeffs/rmodulo2m.cc
rc37827 r2d805a 7 7 */ 8 8 9 #include "config.h"9 #include <coeffs/config.h> 10 10 #include <misc/auxiliary.h> 11 11 … … 13 13 14 14 #include <misc/mylimits.h> 15 #include "coeffs.h"15 #include <coeffs/coeffs.h> 16 16 #include <reporter/reporter.h> 17 17 #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> 22 22 #include <coeffs/si_gmp.h> 23 23 -
coeffs/rmodulo2m.h
rc37827 r2d805a 10 10 */ 11 11 #ifdef HAVE_RINGS 12 #include "coeffs.h"13 #include "rintegers.h"12 #include <coeffs/coeffs.h> 13 #include <coeffs/rintegers.h> 14 14 15 15 #ifndef NATNUMBER -
coeffs/rmodulon.cc
rc37827 r2d805a 7 7 */ 8 8 9 #include "config.h"9 #include <coeffs/config.h> 10 10 #include <misc/auxiliary.h> 11 11 … … 13 13 14 14 #include <misc/mylimits.h> 15 #include "coeffs.h"15 #include <coeffs/coeffs.h> 16 16 #include <reporter/reporter.h> 17 17 #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> 23 23 24 24 #include <string.h> -
coeffs/rmodulon.h
rc37827 r2d805a 9 9 */ 10 10 #ifdef HAVE_RINGS 11 #include "coeffs.h"12 #include "rintegers.h"11 #include <coeffs/coeffs.h> 12 #include <coeffs/rintegers.h> 13 13 14 14 #ifndef NATNUMBER -
coeffs/shortfl.cc
rc37827 r2d805a 8 8 */ 9 9 10 #include "shortfl.h"10 #include <coeffs/shortfl.h> 11 11 12 12 #include <string.h> 13 #include "coeffs.h"13 #include <coeffs/coeffs.h> 14 14 #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> 18 18 19 19 #include <misc/mylimits.h> -
coeffs/shortfl.h
rc37827 r2d805a 8 8 */ 9 9 /* $Id$ */ 10 #include "coeffs.h"10 #include <coeffs/coeffs.h> 11 11 12 12 -
coeffs/si_gmp.h
rc37827 r2d805a 4 4 #define INCL_CF_GMP_H 5 5 #ifdef HAVE_FACTORY 6 #include < cf_gmp.h>6 #include <factory/cf_gmp.h> 7 7 #else 8 8 #if defined(__cplusplus) && defined(__GNUC__) -
coeffs/test.cc
rc37827 r2d805a 1 #include "config.h"1 #include <coeffs/config.h> 2 2 3 3 #include <misc/auxiliary.h> 4 4 5 #include <coeffs .h>6 #include < numbers.h>5 #include <coeffs/coeffs.h> 6 #include <coeffs/numbers.h> 7 7 #include <reporter/reporter.h> 8 8 #include <omalloc/omalloc.h> 9 9 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> 19 19 20 20 #include <iostream> -
reporter/dError.c
rc37827 r2d805a 13 13 #include <stdarg.h> 14 14 #include <stdio.h> 15 #include "config.h"16 #include "reporter.h"15 #include <reporter/config.h> 16 #include <reporter/reporter.h> 17 17 #ifdef HAVE_CONFIG_H 18 18 #include <omalloc/omalloc.h> -
reporter/reporter.cc
rc37827 r2d805a 7 7 */ 8 8 9 #include "config.h"9 #include <reporter/config.h> 10 10 11 11 #include <stdlib.h> … … 18 18 19 19 #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> 24 24 #include <omalloc/omalloc.h> 25 25 //#include "options.h" -
resources/feFopen.cc
rc37827 r2d805a 6 6 #include <unistd.h> 7 7 8 #include "config.h"8 #include <resources/config.h> 9 9 10 10 #include <misc/auxiliary.h> … … 13 13 #include <reporter/reporter.h> 14 14 15 #include "feFopen.h"16 #include "feResource.h"15 #include <resources/feFopen.h> 16 #include <resources/feResource.h> 17 17 18 18 -
resources/feResource.cc
rc37827 r2d805a 11 11 #include <string.h> 12 12 13 #include "config.h"13 #include <resources/config.h> 14 14 15 15 #include <misc/auxiliary.h> 16 16 17 #include "feResource.h"17 #include <resources/feResource.h> 18 18 19 19
Note: See TracChangeset
for help on using the changeset viewer.