blob: 38e464c382a53978c136a5c4a583554eb932923c (
about) (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
/*
global constants
*/
#ifndef CONST_HH
#define CONST_HH
#include <math.h>
#include "real.hh"
const Real CM_TO_PT=72/2.54;
const Real VERT_TO_PT=CM_TO_PT; // tex output
const Real HOR_TO_PT=CM_TO_PT; // tex output
const Real EPS=1e-7; // qlpsolve.hh
const int MAXITER=100; // qlpsolve.hh
const Real INFTY=HUGE;
#endif
|