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.
15 lines
215 B
15 lines
215 B
#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
|
|
|