To use the polco adapter methods, create an instance with or without specific {@link ch.javasoft.polco.adapter.Options Options} and invoke the appropriate computation method. A sample call might for instance look like this:
double[][] eq = ...;//the coefficients of the system equalities double[][] iq = ...;//the coefficients of the system inequalities Options opts = new Options(); opts.setLogLevel(Level.FINE); opts.setLogFile(new File("/tmp/polco.log")); PolcoAdapter polco = new PolcoAdapter(opts). double[][] rays = polco.getDoubleRays(eq, iq);