summaryrefslogtreecommitdiff
path: root/hdr/const.hh
diff options
context:
space:
mode:
Diffstat (limited to 'hdr/const.hh')
-rw-r--r--hdr/const.hh12
1 files changed, 12 insertions, 0 deletions
diff --git a/hdr/const.hh b/hdr/const.hh
new file mode 100644
index 0000000000..dce593b4a0
--- /dev/null
+++ b/hdr/const.hh
@@ -0,0 +1,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