Changeset 76f3a18 in git


Ignore:
Timestamp:
Jan 27, 2012, 7:07:56 PM (11 years ago)
Author:
Oleksandr Motsak <motsak@…>
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
Message:
added building binary programs from IntegerProgramming: toric_ideal, solve_IP, change_cost, gen_test and LLL

ADD: IntegerProgramming is a SUBPACKAGE of the main package
CHG: removing obsolette stuff (gccversion.sh)
CHG: use gmp.h instead of si_gmp.h!

TODO: install help files properly (only distributed for now)
Files:
1 added
2 deleted
5 edited
2 moved

Legend:

Unmodified
Added
Removed
  • IntegerProgramming/BigInt.h

    rddaf27 r76f3a18  
    1212#include <ctype.h>
    1313#include <string.h>
    14 #include <si_gmp.h>
     14#include <gmp.h>
    1515
    1616class BigInt
  • IntegerProgramming/LLL_lattice_to_send.cc

    rddaf27 r76f3a18  
    5858#include <new>
    5959#include <cstring>
    60 #include <si_gmp.h>
     60#include <gmp.h>
    6161
    6262#define LLL_MAX(a,b) (a > b ? a : b)
  • IntegerProgramming/globals.h

    rddaf27 r76f3a18  
    1313// Include facilities needed by several files:
    1414
    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"
    1917
    2018#include <stdio.h>
  • Makefile.am

    rddaf27 r76f3a18  
    99endif
    1010 
    11 PACKAGES=findexec $(ALLOC) $(USE_FACTORY) libpolys kernel numeric Singular
     11PACKAGES=findexec $(ALLOC) $(USE_FACTORY) libpolys kernel numeric Singular IntegerProgramming
    1212
    1313SUBDIRS=$(PACKAGES)
  • configure.ac

    rddaf27 r76f3a18  
    3737
    3838AC_HEADER_STDC
    39 AC_CHECK_HEADERS(unistd.h)
     39AC_CHECK_HEADERS(unistd.h iostream.h)
    4040
    4141AC_CHECK_FUNCS(readlink getcwd getwd)
     
    108108AC_CONFIG_FILES([numeric/Makefile])
    109109AC_CONFIG_FILES([Singular/Makefile])
     110AC_CONFIG_FILES([IntegerProgramming/Makefile])
    110111AC_CONFIG_FILES([libsingular-config])
    111112
Note: See TracChangeset for help on using the changeset viewer.