/** The interface for a CNF Generator. Each time the
* getNext method is called, a new CNF is generated and
* returned.
*/
public interface Generator {
/** This method returns a new CNF formula each time it is called. */
public Literal[][] getNext();
}