]> www.ginac.de Git - cln.git/blob - lidia-interface/src/interfaces/integers/cln/bigint_def.h
* All Files have been modified for inclusion of namespace cln;
[cln.git] / lidia-interface / src / interfaces / integers / cln / bigint_def.h
1 //
2 // LiDIA - a library for computational number theory
3 //   Copyright (c) 1996 by the LiDIA Group
4 //
5 // File        : bigint_def.h 
6 // Author      : Bruno Haible (HB)
7 // Last change : HB, 1996-11-17, initial version
8 //               HB, 1998-01-24, change  #include <cl_*>  to  #include "cl_*"
9 //                   because the files are in $(LIDIA_HOME)/include/LiDIA,
10 //                   and the only -I option is -I$(LIDIA_HOME)/include .
11 //
12
13 #ifndef LIDIA_BIGINT_DEF_H
14 #define LIDIA_BIGINT_DEF_H
15
16 /**
17 ** The next include MUST remain in this file in THIS position.
18 **/
19
20 #include <LiDIA/lidia.h>
21
22 /**
23 ** include here the include file of the C multiple precision integers
24 ** and define integer_type_name to be the integer type we have. Define 
25 ** base_digit to
26 **
27 ** For example write something like
28 **
29 ** #include "integer_include_file.h"
30 ** #define integer_type_name    your_integer_type_name 
31 **
32 **/
33
34 #include <LiDIA/kernel/cln/number.h>
35 #include <LiDIA/kernel/cln/integer.h>
36
37 #define integer_type_name       cl_I
38 #define base_digit       uintD
39
40 #endif