view src/lite/MainLoop.java @ 73:034c573af8ea

Diagnosis Routine not yet tested.
author kono
date Wed, 16 Jan 2008 14:34:11 +0900
parents
children f69763106257
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
		sat.p.parseFile("data/example");
		sat.p.help();
		sat.p.parse(System.in);
	}
}