00001 #ifndef __CONSTANT_H 00002 #define __CONSTANT_H 00003 00004 #include <string> 00005 00006 typedef unsigned VarId; 00007 const float Infinity = 1e20; 00008 const int MaxInt = 65535; 00009 const std::string defaultGetName = "Variable non referencee"; 00010 const std::string noModel = "pas de Modele"; 00011 const float epsylon = 1e-4; // précision pour l'affichage de la matrice creuse 00012 00013 #endif