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

nl.uu.cs.ape.sat.models.AuxiliaryPredicate Maven / Gradle / Ivy

Go to download

APE is a command line tool and an API for the automated exploration of possible computational pipelines (workflows) from large collections of computational tools.

There is a newer version: 2.3.0
Show newest version
package nl.uu.cs.ape.sat.models;

import java.util.SortedSet;

import nl.uu.cs.ape.sat.models.enums.LogicOperation;
import nl.uu.cs.ape.sat.models.logic.constructs.PredicateLabel;
import nl.uu.cs.ape.sat.models.logic.constructs.TaxonomyPredicate;

public interface AuxiliaryPredicate extends PredicateLabel {

	public LogicOperation getLogicOp();
	
	public SortedSet getGeneralizedPredicates();
	
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy