Changeset 10b7a4 in git


Ignore:
Timestamp:
Jan 9, 2008, 12:14:33 PM (15 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a657104b677b4c461d018cbf3204d72d34ad66a9')
Children:
1c2bc60a944c86287932acbdecdb44381f03a5fa
Parents:
cc455372caef57b06d2a299f576b2072e6679ac4
Message:
*sage/hannes: gcc 4.3


git-svn-id: file:///usr/local/Singular/svn/trunk@10499 2c84dea3-7e68-4137-9b89-c4e89433aadc
Location:
IntegerProgramming
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • IntegerProgramming/binomial.cc

    rcc4553 r10b7a4  
    66#define BINOMIAL_CC
    77
     8#include <climits>
    89#include "binomial__term_ordering.h"
    910
  • IntegerProgramming/globals.h

    rcc4553 r10b7a4  
    1414// Include facilities needed by several files:
    1515
     16//#define HAVE_IOSTREAM_H
    1617#include <stdio.h>
     18#ifndef HAVE_IOSTREAM_H
     19#include <iostream>
     20#include <fstream>
     21#include <iomanip>
     22#include <limits>
     23#else
    1724#include <iostream.h>
    1825#include <fstream.h>
    1926#include <iomanip.h>
     27#include <limits.h>
     28#endif
    2029#include <stddef.h>
    2130#include <stdlib.h>
    2231#include <math.h>
    23 #include <limits.h>
    2432#include <string.h>
     33
     34using namespace std;
    2535
    2636// Include a BigInt class from a foreign library:
  • IntegerProgramming/ideal.cc

    rcc4553 r10b7a4  
    66#define IDEAL_CC
    77
     8#include <climits>
    89#include "ideal.h"
    910
Note: See TracChangeset for help on using the changeset viewer.