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?