0

I want to read in a problem I was solving in SICP, with Gurobi. I can see that the java/jni library has functions for this:

public native void writeOrigProblem(long var1, String var3, String var4, boolean var5) throws NativeScipException;

public native void writeTransProblem(long var1, String var3, String var4, boolean var5) throws NativeScipException;

However I couldn't find more details on this output format. Is it compatible with any of the formats here?

mattmilten
  • 6,242
  • 3
  • 35
  • 65
Daniel
  • 5,839
  • 9
  • 46
  • 85

1 Answers1

2

Here's the list of the available file readers (and the supported formats).

And there's also a documentation about the write functions SCIPwriteOrigProb() and SCIPwritetransProb(); you need to prepend the JNI function name with SCIP to find the corresponding C function in our doxygen documentation.

mattmilten
  • 6,242
  • 3
  • 35
  • 65