|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectde.uni_tuebingen.sfb.lichtenstein.formulas.FormulaImpl
de.uni_tuebingen.sfb.lichtenstein.formulas.ComposedFormula
de.uni_tuebingen.sfb.lichtenstein.formulas.SecondOrderQuantor
de.uni_tuebingen.sfb.lichtenstein.formulas.SecondOrderExistentialQuantification
public class SecondOrderExistentialQuantification
A class representing the existential quantification of a formula over a second order variable.
| Constructor Summary | |
|---|---|
SecondOrderExistentialQuantification(SecondOrderVariable var,
Formula arg)
Initialize a new existential quantor, given a variable to bind and a formula to act upon. |
|
| Method Summary | |
|---|---|
void |
accept(FormulaVisitor visitor)
Accept a formula visitor. |
SecondOrderExistentialQuantification |
getNormalForm()
Get a normal form with only conjunction, disjunction, negation and existential quantification. |
String |
getSymbol()
Return the textual representation of this binary junctor. |
| Methods inherited from class de.uni_tuebingen.sfb.lichtenstein.formulas.SecondOrderQuantor |
|---|
containsVariable, equals, getArgument, getBoundVariable, getFirstIndexOf, getNbBoundVariables, getNbFreeVariables, getNbSubformulas, getNbVariables, getPredicates, getSubformulaAt, getVariableAt, hashCode, isFreeVariable, toString |
| Methods inherited from class de.uni_tuebingen.sfb.lichtenstein.formulas.ComposedFormula |
|---|
getAllSubformulas |
| Methods inherited from class de.uni_tuebingen.sfb.lichtenstein.formulas.FormulaImpl |
|---|
and, exists, exists, forAll, forAll, getFreeVariables, getVariables, iff, implies, isClosed, not, or |
| Methods inherited from class java.lang.Object |
|---|
getClass, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface de.uni_tuebingen.sfb.lichtenstein.formulas.Formula |
|---|
and, exists, exists, forAll, forAll, getFreeVariables, getVariables, iff, implies, isClosed, not, or |
| Constructor Detail |
|---|
public SecondOrderExistentialQuantification(SecondOrderVariable var,
Formula arg)
var - The variable that is bound by this quantor.arg - The formula which this quantor acts upon.|
var != null && arg != null && arg.isFreeVariable(var)| new.getBoundVariable() == var| new.getArgument() == arg| Method Detail |
|---|
public SecondOrderExistentialQuantification getNormalForm()
|
result == getArgument().getNormalForm().exists(getBoundVariable())public String getSymbol()
getSymbol in class ComposedFormula| result == "∃"
public void accept(FormulaVisitor visitor)
throws de.uni_tuebingen.sfb.lichtenstein.exceptions.VisitorException
accept in interface Visitableaccept in class FormulaImplvisitor - The visitor that is to be accepted to do its work.
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||