Revision 3df61d16c51c6cbbe49ca3faabd2215e6061887f authored by Alexander Kruppa on 20 February 2014, 16:47:44 UTC, committed by Alexander Kruppa on 20 February 2014, 16:47:44 UTC
1 parent 744a265
Raw File
usp.h
#ifndef USP_H_
#define USP_H_

#include <gmp.h> /* for mpz_t */

typedef struct {
  mpz_t a;
  int ka;
  mpz_t b;
  int kb;
} root_struct;

int numberOfRealRoots (mpz_t *p, int n, double T, int verbose, root_struct *R);

#endif  /* USP_H_ */
back to top