aboutsummaryrefslogtreecommitdiff
path: root/src/clp_constants.F90
diff options
context:
space:
mode:
Diffstat (limited to 'src/clp_constants.F90')
-rw-r--r--src/clp_constants.F9014
1 files changed, 14 insertions, 0 deletions
diff --git a/src/clp_constants.F90 b/src/clp_constants.F90
new file mode 100644
index 0000000..bf7b285
--- /dev/null
+++ b/src/clp_constants.F90
@@ -0,0 +1,14 @@
+module clp_constants
+ use iso_c_binding
+ implicit none
+
+ ! The following definition is copied exactly from Coin_C_defines.h
+#if COIN_BIG_INDEX==0
+ integer, parameter :: CoinBigIndex_t = c_int
+#elif COIN_BIG_INDEX==1
+ integer, parameter :: CoinBigIndex_t = c_long
+#else
+ integer, parameter :: CoinBigIndex_t = c_long_long
+#endif
+
+end module clp_constants