T - The type of formulas that this operator works on.public abstract class MultipleBaseExpansionOperator<T extends Formula> extends java.lang.Object implements BaseExpansionOperator<T>
| Constructor and Description |
|---|
MultipleBaseExpansionOperator() |
| Modifier and Type | Method and Description |
|---|---|
abstract java.util.Collection<T> |
expand(java.util.Collection<T> base,
java.util.Collection<T> formulas)
Expands the first collection of formulas by the second collection of formulas.
|
java.util.Collection<T> |
expand(java.util.Collection<T> base,
T formula)
Expands the given collection of formulas by the given formula.
|
public java.util.Collection<T> expand(java.util.Collection<T> base, T formula)
BaseExpansionOperatorexpand in interface BaseExpansionOperator<T extends Formula>base - some collection of formulas.formula - a formulapublic abstract java.util.Collection<T> expand(java.util.Collection<T> base, java.util.Collection<T> formulas)
base - some collection of formulas.formulas - some formulas.