Interface IncisionFunction<T extends net.sf.tweety.commons.Formula>
-
- Type Parameters:
T- The formula this incision function works on
- All Known Implementing Classes:
RandomIncisionFunction
public interface IncisionFunction<T extends net.sf.tweety.commons.Formula>This interface models an incision function for kernel contraction, ie a function that incises each of the kernel sets of some set.- Author:
- Matthias Thimm
-
-
Method Summary
Modifier and Type Method Description Collection<T>incise(Collection<Collection<T>> kernelSets)Selects from each collection in the given collection one element and returns the collection of all those elements.
-
-
-
Method Detail
-
incise
Collection<T> incise(Collection<Collection<T>> kernelSets)
Selects from each collection in the given collection one element and returns the collection of all those elements.- Parameters:
kernelSets- a collection of kernel sets.- Returns:
- the selected elements.
-
-