|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||
java.lang.Objectde.uni_tuebingen.sfb.lichtenstein.formulas.Variable
de.uni_tuebingen.sfb.lichtenstein.formulas.SetDenotator
public abstract class SetDenotator
An abstract superclass for second order variables and predicates, both denotating sets of nodes.
| Method Summary | |
|---|---|
Inclusion |
contains(FirstOrderVariable that)
Return the formula that says that variable is an element of this set. |
SecondOrderEquality |
logicalEquals(SetDenotator that)
Return the formula that says this set is equal to that set. |
Subset |
subset(SetDenotator that)
Return the formula that says this set is a subset of that set. |
Subset |
superset(SetDenotator that)
Return the formula that says this set is a superset of that set. |
| Methods inherited from class de.uni_tuebingen.sfb.lichtenstein.formulas.Variable |
|---|
getName, toString |
| Methods inherited from class java.lang.Object |
|---|
equals, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Method Detail |
|---|
public SecondOrderEquality logicalEquals(SetDenotator that)
that - The other variable. `That' is a mnemonic for this.logicalEquals(that).| result.getFirstVariable() == this && |
result.getSecondVariable() == thatpublic Subset subset(SetDenotator that)
that - The other variable. `That' is a mnemonic for this.subset(that).| result.getSubsetVariable() == this && |
result.getSupersetVariable() == thatpublic Subset superset(SetDenotator that)
that - The other variable. `That' is a mnemonic for this.superset(that).| result.getSubsetVariable() == that && |
result.getSupersetVariable() == thispublic Inclusion contains(FirstOrderVariable that)
that - The other variable. `That' is a mnemonic for this.contains(that).| result.getIncludedVariable() == that && |
result.getContainingVariable() == this
|
|||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | ||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | ||||||||