nl.uu.cs.ape.sat.models.logic.constructs.Clause Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of APE Show documentation
Show all versions of APE Show documentation
APE is a command line tool and an API for the automated exploration of possible computational pipelines (workflows) from large collections of computational tools.
package nl.uu.cs.ape.sat.models.logic.constructs;
import java.util.ArrayList;
/**
* An ordered collection of Literals. In practice it TODO
*
* @author Vedran Kasalica
*/
public class Clause extends ArrayList {
private static final long serialVersionUID = -7456831885895888413L;
/**
* Instantiates a new Clause.
*/
public Clause() {
super();
}
}