Interface Conjunctable
-
- All Superinterfaces:
net.sf.tweety.commons.Formula,SimpleLogicalFormula
- All Known Subinterfaces:
ClassicalFormula
- All Known Implementing Classes:
RelationalFormula
public interface Conjunctable extends SimpleLogicalFormula
Formulas implementing this interface can be connected by using AND.- Author:
- Tim Janus
-
-
Method Summary
Modifier and Type Method Description SimpleLogicalFormulacombineWithAnd(Conjunctable f)Returns a conjunction of this and the given formula.-
Methods inherited from interface net.sf.tweety.logics.commons.syntax.interfaces.SimpleLogicalFormula
clone, equals, getAtoms, getPredicateCls, getPredicates, hashCode, isLiteral
-
-
-
-
Method Detail
-
combineWithAnd
SimpleLogicalFormula combineWithAnd(Conjunctable f)
Returns a conjunction of this and the given formula.- Parameters:
f- a formula to be combined with AND and this.- Returns:
- a conjunction of this and the given formula.
-
-