Changeset c3d175 in git
- Timestamp:
- Jun 8, 2010, 10:31:13 PM (13 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '0604212ebb110535022efecad887940825b97c3f')
- Children:
- 2b957aaac9e8428774b24a75c7520073a5f4f90d
- Parents:
- 01e7a1d2a92546f79319f8b6368955396525c869
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2010-06-08 22:31:13+02:00
- git-committer:
- Mohamed Barakat <mohamed.barakat@rwth-aachen.de>2011-11-09 11:55:02+01:00
- Files:
-
- 1 added
- 8 edited
Legend:
- Unmodified
- Added
- Removed
-
coeffs/Makefile.in
r01e7a1d rc3d175 32 32 PIPE = -pipe 33 33 CFLAGS = -O3 -w -fomit-frame-pointer ${PIPE} 34 CXXFLAGS = -O3 -w -fomit-frame-pointer --no-rtti ${PIPE} 34 CXXFLAGS = -O3 -w -fomit-frame-pointer --no-rtti ${PIPE} -g 35 35 CXXTEMPLFLAGS = -fno-implicit-templates --no-exceptions 36 CPPFLAGS = -I${srcdir} -I${includedir} -I${srcdir}/../misc/ -I${srcdir}/../resource/ 36 CPPFLAGS = -I${srcdir} -I${includedir} -I${srcdir}/../misc/ -I${srcdir}/../resource/ -I${srcdir}/../output/ -L${srcdir}/../output/ -L${libdir} -lgmp 37 37 DEFS = -DNDEBUG -DOM_NDEBUG -Dix86_Linux -DHAVE_CONFIG_H 38 38 … … 78 78 79 79 clean: mostlyclean 80 -rm -f *.bak *.d *.dd depend *.a *.so* 80 -rm -f *.bak *.d *.dd depend *.a *.so* test 81 81 82 82 83 tags: … … 90 91 ${INSTALL_DATA} libcoeffs.a ${libdir}/libcoeffs.a 91 92 $(INSTALL_DATA) coeffs.h $(includedir)/coeffs.h 93 94 test: libcoeffs.a 95 ${CXX} ${CXXFLAGS} ${CXXTEMPLFLAGS} ${CPPFLAGS} ${DEFS} test.cc -L. -I. -lcoeffs -o test -lomalloc -loutput -
coeffs/config.h.in
r01e7a1d rc3d175 1 #define assume(x) ((void) 0)1 // #define assume(x) ((void) 0) 2 2 #define memcpy4 memcpy 3 4 #define HAVE_ASSUME 5 -
coeffs/gnumpc.cc
r01e7a1d rc3d175 8 8 * ngc == number gnu complex 9 9 */ 10 11 #include "config.h" 10 12 11 13 #include "coeffs.h" -
coeffs/gnumpc.h
r01e7a1d rc3d175 21 21 22 22 23 / * // Private interface should be hidden!!!23 // Private interface should be hidden!!! 24 24 25 25 /// Note: MAY NOT WORK AS EXPECTED! … … 52 52 BOOLEAN ngcDBTest(number a, const char *f, const int l, const coeffs r); 53 53 #endif 54 */55 56 54 57 55 … … 59 57 // number ngcMapQ(number from, const coeffs r, const coeffs aRing); 60 58 #endif 61 62 63 // local Variables: *** 64 // folded-file: t *** 65 // compile-command: "make installg" *** 66 // End: *** 59 /* GMPCOMPLEX_H */ -
coeffs/longrat.cc
r01e7a1d rc3d175 45 45 #include <string.h> 46 46 #include <float.h> 47 #include "config.h" 47 48 #include "coeffs.h" 48 49 #include "output.h" -
coeffs/longrat.h
r01e7a1d rc3d175 9 9 */ 10 10 #include "coeffs.h" 11 #include "config.h"11 // #include "config.h" 12 12 #include "si_gmp.h" 13 13 #include <aux.h> -
coeffs/longrat0.cc
r01e7a1d rc3d175 10 10 #include <stdio.h> 11 11 #include <string.h> 12 #include "config.h" 12 13 #include "output.h" 13 #include "config.h"14 14 #include "coeffs.h" 15 15 #include "omalloc.h" -
output/config.h.in
r01e7a1d rc3d175 12 12 #undef HAVE_VSNPRINTF 13 13 14 #define HAVE_ASSUME 15 14 16 #endif
Note: See TracChangeset
for help on using the changeset viewer.