jp.kobe_u.sugar.OutputInterface Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsr331-sugar Show documentation
Show all versions of jsr331-sugar Show documentation
This is a JSR331 interface for the open source Java constraint programming library "Sugar" v. 2.1.3
The newest version!
package jp.kobe_u.sugar;
import java.io.PrintWriter;
import jp.kobe_u.sugar.csp.CSP;
public interface OutputInterface {
public void setCSP(CSP csp);
public void setOut(PrintWriter out);
public void setFormat(String format) throws SugarException;
public void output() throws SugarException;
}