view src/lite/MainLoop.java @ 88:6b3535ea6958

*** empty log message ***
author kono
date Fri, 18 Jan 2008 16:00:37 +0900
parents f69763106257
children
line wrap: on
line source

package lite;


import sbdd.BDDSatisfier;

public class MainLoop {

	public static void main(String arg[]) {
		BDDSatisfier sat = new BDDSatisfier();
		// read predefined examples
		if (!sat.p.getResource("/data/example"))
			sat.p.parseFile("data/example");
		sat.p.help();
		sat.p.parse(System.in,"-> ");
	}
}