summaryrefslogtreecommitdiff
path: root/include/polynom.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/polynom.h')
-rw-r--r--include/polynom.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/polynom.h b/include/polynom.h
index 64a9273..2078d0b 100644
--- a/include/polynom.h
+++ b/include/polynom.h
@@ -2,6 +2,8 @@
#define __POLYNOM_H__
#include "scalaires.h"
+extern int smartprint;
+
typedef struct monome {
rationnel coef;
unsigned int degre;
@@ -30,7 +32,7 @@ polynome ply_modulo(polynome poly1, polynome poly2); /* reste de la division de
polynome ply_exposant(polynome poly, unsigned int exp); /* exponentiation d'un polynome */
-double ply_valuation(polynome poly, double point); /* valuation d'un polynome en un point */
+rationnel ply_valuation(polynome poly, rationnel point); /* valuation d'un polynome en un point */
char *ply_affichage(polynome poly); /* routine d'affichage d'un polynome */