summaryrefslogtreecommitdiff
path: root/hdr/const.hh
blob: dce593b4a06401edb837b783c9be86c3f4814981 (about) (plain)
1
2
3
4
5
6
7
8
9
10
11
12
/*
    global constants
    */
#ifndef CONST_HH
#define CONST_HH
#include <math.h>
#include "real.hh"

const Real EPS=1e-7;		// qlpsolve.hh
const int MAXITER=100;		// qlpsolve.hh
const Real INFTY=HUGE;
#endif