You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+11-14
Original file line number
Diff line number
Diff line change
@@ -20,32 +20,29 @@ Julia interface to [SCIP](http://scip.zib.de) solver.
20
20
21
21
## Installation
22
22
23
-
Follow the steps below to get SCIP.jl working. These instructions are **only tested on GNU/Linux** systems. With minor adjustments, it might also work on OS X.
23
+
Follow the steps below to get SCIP.jl working.
24
24
25
-
1.The SCIP.jl package requires [SCIP](http://scip.zib.de/) to be installed. [Download](http://scip.zib.de/download.php?fname=scipoptsuite-3.2.1.tgz) the SCIP Optimization Suite, untar it.
25
+
1.The SCIP.jl package requires [SCIP](http://scip.zib.de/) to be installed in the newest version (4.0.0).
26
+
[Download](http://scip.zib.de/download.php?fname=scipoptsuite-4.0.0.tgz) the SCIP Optimization Suite, untar it.
4.Set the **environment variable `SCIPOPTDIR`** to point to the directory that contains the `scipoptsuite` sources. CSIP needs the library in `${SCIPOPTDIR}/lib/scipoptlib.so` and the C header files in `${SCIPOPTDIR}/scip-*/src/`.
39
+
Note that support for OS X is currently broken with the update to SCIP 4.0.0.
40
+
41
+
3.Set the **environment variable `SCIPOPTDIR`** to point to the directory that contains the `scipoptsuite` sources. CSIP needs the library in `${SCIPOPTDIR}/lib/scipoptlib.so` and the C header files in `${SCIPOPTDIR}/scip-*/src/`.
45
42
```
46
43
export SCIPOPTDIR=`pwd`
47
44
```
48
-
5.This package is registered in `METADATA.jl` and can be installed in Julia with
45
+
4.This package is registered in `METADATA.jl` and can be installed in Julia with
0 commit comments