I am currently working with SCIP by implementing in Java using the Java Native Interface. I implemented a basic Covering Set Problem and the solver works great. My next step is to generate cutting planes by adding my own separators. I already found something on the SCIP page but I don't know how to adapt the instructions using Java and the Java Native Interface. Thanks for every answer...
Asked
Active
Viewed 136 times
0
-
I don't know exactly how the JNI works but you may need to write your new separator in C, update the interface accordingly and then call it from Java. – mattmilten May 18 '15 at 12:56
-
Why not use Clojure and write in LISP? – duffymo May 18 '15 at 12:56