lilypond-0.0.3
[lilypond.git] / const.hh
blob38e464c382a53978c136a5c4a583554eb932923c
1 /*
2 global constants
3 */
4 #ifndef CONST_HH
5 #define CONST_HH
6 #include <math.h>
7 #include "real.hh"
9 const Real CM_TO_PT=72/2.54;
10 const Real VERT_TO_PT=CM_TO_PT; // tex output
11 const Real HOR_TO_PT=CM_TO_PT; // tex output
13 const Real EPS=1e-7; // qlpsolve.hh
14 const int MAXITER=100; // qlpsolve.hh
15 const Real INFTY=HUGE;
16 #endif