You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
215 B
16 lines
215 B
12 months ago
|
#ifndef _qi_uspensky_h_
|
||
|
#define _qi_uspensky_h_
|
||
|
|
||
|
/** GMP */
|
||
|
#include <gmp.h>
|
||
|
|
||
|
/** Structure used to store intervals by Uspensky */
|
||
|
typedef struct
|
||
|
{
|
||
|
mpz_t c;
|
||
|
long k;
|
||
|
unsigned int isexact;
|
||
|
} interval;
|
||
|
|
||
|
#endif
|