]> git.donarmstrong.com Git - lilypond.git/blob - const.hh
release: 0.0.3
[lilypond.git] / const.hh
1 /*
2     global constants
3     */
4 #ifndef CONST_HH
5 #define CONST_HH
6 #include <math.h>
7 #include "real.hh"
8
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
12
13 const Real EPS=1e-7;            // qlpsolve.hh
14 const int MAXITER=100;          // qlpsolve.hh
15 const Real INFTY=HUGE;
16 #endif