Changeset 9eb0f9 in git
- Timestamp:
- May 23, 2011, 8:10:02 PM (12 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '00e2e9c41af3fde1273eb3633f4c0c7c3db2579d')
- Children:
- b2366e1febbada8a1c36d078ca1dff3e839e9988
- Parents:
- 2f0314b588c9d83a52b5e2ded26f85edb4ea9593
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2011-05-23 20:10:02+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 12:36:49+01:00
- Location:
- libpolys/coeffs
- Files:
-
- 6 edited
Legend:
- Unmodified
- Added
- Removed
-
libpolys/coeffs/Makefile.am
r2f0314 r9eb0f9 51 51 check_PROGRAMS = $(TESTS) 52 52 53 test_SOURCES = test.cc gftables54 test_g_SOURCES = test.cc gftables53 test_SOURCES = test.cc 54 test_g_SOURCES = test.cc 55 55 56 56 test_LDADD = -lcoeffs ${GMP_LIBS} -lresources -lreporter -lmisc ${FACTORY_LIBS} ${NTL_LIBS} -lomalloc 57 57 test_g_LDADD = -lcoeffs_g ${GMP_LIBS} -lresources_g -lreporter_g -lmisc_g ${FACTORY_LIBS} ${NTL_LIBS} -lomalloc_g 58 58 59 59 test: gftables 60 test_g: gftables 60 61 61 62 test_CFLAGS = -O3 -fomit-frame-pointer ${PIPE} -
libpolys/coeffs/coeffs.h
r2f0314 r9eb0f9 16 16 17 17 #ifdef HAVE_FACTORY 18 #include <factory/factory.h> 19 //class CanonicalForm; 18 class CanonicalForm; 20 19 #endif 21 20 -
libpolys/coeffs/longrat.cc
r2f0314 r9eb0f9 8 8 9 9 #include <coeffs/longrat.h> 10 10 11 11 12 // 64 bit version: … … 43 44 #include <string.h> 44 45 #include <float.h> 46 45 47 #include "config.h" 46 48 #include <coeffs/coeffs.h> 47 49 #include <reporter/reporter.h> 48 50 #include <omalloc/omalloc.h> 51 49 52 #include <coeffs/numbers.h> 50 53 #include <coeffs/modulop.h> 51 54 #include <coeffs/shortfl.h> 52 55 #include <coeffs/mpr_complex.h> 53 #include <coeffs/longrat.h> 54 56 57 #ifdef HAVE_FACTORY 58 #include <factory/factory.h> 59 #endif 55 60 56 61 #ifndef BYTES_PER_MP_LIMB -
libpolys/coeffs/longrat.h
r2f0314 r9eb0f9 8 8 * ABSTRACT: computation with long rational numbers 9 9 */ 10 #include <coeffs/coeffs.h>11 // #include "config.h"12 #include "si_gmp.h"13 10 #include <misc/auxiliary.h> 14 11 #include <omalloc/omalloc.h> 12 #include <coeffs/si_gmp.h> 13 #include <coeffs/coeffs.h> 15 14 16 15 #define SR_HDL(A) ((long)(A)) -
libpolys/coeffs/numbers.cc
r2f0314 r9eb0f9 29 29 #include <coeffs/rintegers.h> 30 30 #endif 31 32 #ifdef HAVE_FACTORY 33 #include <factory/factory.h> 34 #endif 35 31 36 #include <string.h> 32 37 #include <stdlib.h> -
libpolys/coeffs/test.cc
r2f0314 r9eb0f9 4 4 5 5 #include <reporter/reporter.h> 6 #include <resources/feResource.h> 6 7 7 8 #include <coeffs/coeffs.h> … … 17 18 #include <coeffs/rmodulo2m.h> 18 19 #include <coeffs/rintegers.h> 20 21 19 22 #ifdef HAVE_FACTORY 20 23 int initializeGMP(){ return 1; } … … 254 257 255 258 256 257 258 int main() 259 { 259 int main( int, char *argv[] ) 260 { 261 feInitResources(argv[0]); 262 263 StringSetS("ressources in use (as reported by feStringAppendResources(0):\n"); 264 feStringAppendResources(0); 265 PrintS(StringAppendS("\n")); 266 267 260 268 int c = 0; 261 269
Note: See TracChangeset
for help on using the changeset viewer.