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

fr.boreal.model.formula.api.FOFormulaConjunction Maven / Gradle / Ivy

The newest version!
package fr.boreal.model.formula.api;

import java.util.Collection;

/**
 * Representation of conjunctions of sub formulas
 * 
 * @author Florent Tornil
 */
public non-sealed interface FOFormulaConjunction extends FOFormula {

	@Override
	default boolean isConjunction() {
		return true;
	}

	/**
	 * @return the sub formulas
	 */
	Collection getSubElements();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy