Skip to content

Commit 33f7e15

Browse files
committed
update README
1 parent ba74734 commit 33f7e15

File tree

1 file changed

+12
-4
lines changed

1 file changed

+12
-4
lines changed

README.md

+12-4
Original file line numberDiff line numberDiff line change
@@ -30,12 +30,12 @@ Only Linux is tested and officially supported. Contributions to supporting other
3030
operating systems are welcome.
3131

3232
We recommend using one of the provided installers, e.g.,
33-
`SCIPOptSuite-6.0.0-Linux.deb` for systems based on Debian. Adding the SCIP.jl
33+
`SCIPOptSuite-6.0.1-Linux.deb` for systems based on Debian. Adding the SCIP.jl
3434
package should then work out of the box:
3535

3636
pkg> add SCIP
3737

38-
If you [build SCIP from source](https://scip.zib.de/doc-6.0.0/html/CMAKE.php)
38+
If you [build SCIP from source](https://scip.zib.de/doc-6.0.1/html/CMAKE.php)
3939
you should set the environment variable `SCIPOPTDIR` to point the the
4040
**installation path**. That is, `$SCIPOPTDIR/lib/libscip.so` should exist.
4141

@@ -95,10 +95,18 @@ constraints by name (`SingleVariable`-set constraints are not stored as SCIP
9595
constraints explicitly).
9696

9797
Support for more constraint types (quadratic/SOC, SOS1/2, nonlinear expression)
98-
is planned, but SCIP itself only supports affine objective functions, so we will
99-
stick with that. More general objective functions could be implented via a
98+
is implemented, but SCIP itself only supports affine objective functions, so we
99+
will stick with that. More general objective functions could be implented via a
100100
[bridge](https://github.com/JuliaOpt/MathOptInterface.jl/issues/529).
101101

102+
Supported operators in nonlinear expressions are as follows:
103+
104+
- unary: `-`, `sqrt`, `exp`, `log`, `abs`
105+
- binary: `-`, `/`, `^`, `min`, `max`
106+
- n-ary: `+`, `*`
107+
108+
In particular, trigonometric functions are not supported.
109+
102110
## Old Interface Implementation
103111

104112
A previous implementation of SCIP.jl supported

0 commit comments

Comments
 (0)