All Downloads are FREE. Search and download functionalities are using the official Maven repository.

jp.kobe_u.sugar.OutputInterface Maven / Gradle / Ivy

Go to download

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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy