Changeset 10b7a4 in git
- Timestamp:
- Jan 9, 2008, 12:14:33 PM (15 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', 'a657104b677b4c461d018cbf3204d72d34ad66a9')
- Children:
- 1c2bc60a944c86287932acbdecdb44381f03a5fa
- Parents:
- cc455372caef57b06d2a299f576b2072e6679ac4
- Location:
- IntegerProgramming
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
IntegerProgramming/binomial.cc
rcc4553 r10b7a4 6 6 #define BINOMIAL_CC 7 7 8 #include <climits> 8 9 #include "binomial__term_ordering.h" 9 10 -
IntegerProgramming/globals.h
rcc4553 r10b7a4 14 14 // Include facilities needed by several files: 15 15 16 //#define HAVE_IOSTREAM_H 16 17 #include <stdio.h> 18 #ifndef HAVE_IOSTREAM_H 19 #include <iostream> 20 #include <fstream> 21 #include <iomanip> 22 #include <limits> 23 #else 17 24 #include <iostream.h> 18 25 #include <fstream.h> 19 26 #include <iomanip.h> 27 #include <limits.h> 28 #endif 20 29 #include <stddef.h> 21 30 #include <stdlib.h> 22 31 #include <math.h> 23 #include <limits.h>24 32 #include <string.h> 33 34 using namespace std; 25 35 26 36 // Include a BigInt class from a foreign library: -
IntegerProgramming/ideal.cc
rcc4553 r10b7a4 6 6 #define IDEAL_CC 7 7 8 #include <climits> 8 9 #include "ideal.h" 9 10
Note: See TracChangeset
for help on using the changeset viewer.