Changeset 76f3a18 in git
- Timestamp:
- Jan 27, 2012, 7:07:56 PM (11 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a657104b677b4c461d018cbf3204d72d34ad66a9')
- Children:
- fea2afe12a425d875d707eb7393d52b070f19b49
- Parents:
- ddaf2700f95c21ac48ebb35fcee012aa8c08033e
- git-author:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-01-27 19:07:56+01:00
- git-committer:
- Oleksandr Motsak <motsak@mathematik.uni-kl.de>2012-01-27 19:28:00+01:00
- Files:
-
- 1 added
- 2 deleted
- 5 edited
- 2 moved
Legend:
- Unmodified
- Added
- Removed
-
IntegerProgramming/BigInt.h
rddaf27 r76f3a18 12 12 #include <ctype.h> 13 13 #include <string.h> 14 #include < si_gmp.h>14 #include <gmp.h> 15 15 16 16 class BigInt -
IntegerProgramming/LLL_lattice_to_send.cc
rddaf27 r76f3a18 58 58 #include <new> 59 59 #include <cstring> 60 #include < si_gmp.h>60 #include <gmp.h> 61 61 62 62 #define LLL_MAX(a,b) (a > b ? a : b) -
IntegerProgramming/globals.h
rddaf27 r76f3a18 13 13 // Include facilities needed by several files: 14 14 15 #include "si_gcc_v.h" 16 #ifdef SI_GCC2 17 #define HAVE_IOSTREAM_H 18 #endif 15 // the following is not good! TODO: move to all including sources... 16 #include "config.h" 19 17 20 18 #include <stdio.h> -
Makefile.am
rddaf27 r76f3a18 9 9 endif 10 10 11 PACKAGES=findexec $(ALLOC) $(USE_FACTORY) libpolys kernel numeric Singular 11 PACKAGES=findexec $(ALLOC) $(USE_FACTORY) libpolys kernel numeric Singular IntegerProgramming 12 12 13 13 SUBDIRS=$(PACKAGES) -
configure.ac
rddaf27 r76f3a18 37 37 38 38 AC_HEADER_STDC 39 AC_CHECK_HEADERS(unistd.h )39 AC_CHECK_HEADERS(unistd.h iostream.h) 40 40 41 41 AC_CHECK_FUNCS(readlink getcwd getwd) … … 108 108 AC_CONFIG_FILES([numeric/Makefile]) 109 109 AC_CONFIG_FILES([Singular/Makefile]) 110 AC_CONFIG_FILES([IntegerProgramming/Makefile]) 110 111 AC_CONFIG_FILES([libsingular-config]) 111 112
Note: See TracChangeset
for help on using the changeset viewer.